home *** CD-ROM | disk | FTP | other *** search
/ Game Programming for Teens / GameProgrammingForTeens.iso / Source / chapter02 / demo02-09.bb < prev    next >
Encoding:
Text File  |  2003-04-06  |  437 b   |  14 lines

  1. ;demo02-09.bb - Shows use of the And operator
  2.  
  3. ;find out how old the user is
  4. age = Input$("How old are you? ") 
  5. ;find out if the user lives in america
  6. location = Input$("Do you live in America? (1 For yes, 2 For no) ") 
  7.  
  8. ;Write out the proper string depending on the user's age and locations
  9. If age >= 18 And location = 1 Then 
  10.     Print "Congrats, you are eligible to vote!" 
  11. Else
  12.     Print "Sorry, you can't vote."
  13. EndIf
  14. WaitKey