LIFE

10PRINT “If an average life”

20PRINT “span is 70 years”

30PRINT “Then how many”

40PRINT “generations would have”

50PRINT “lived in 2000 years?”

60INPUT “Enter a guess.”;GUESS

70AMOUNT = INT (2000/70)

80DIFF = ABS (AMOUNT-GUESS)

90PRINT “The answer was ” ;AMOUNT

100PRINT “You were ”; DIFF

110PRINT “generations off.”

120END

RUN

THE COOLEST PERSON

10 PRINT “Enter the coolest”

20INPUT “person you know”;COOL$

30FOR COUNT = 1 TO 50

40PRINT COOL$;“ is super cool!”

50NEXT COUNT

60END

RUN

67