home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming for Teens (2nd Edition) / 3DGPFT2E.iso / Source / Chapter02 / demo02-09.bb < prev    next >
Encoding:
Text File  |  2009-01-21  |  470 b   |  16 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.  
  15. ;Wait five seconds
  16. Delay 5000