Vtech PreComputer Power Pad Plus User Manual - Page 71

PRINT The answer was ;AMOUNT

Page 71 highlights

LIFE 10 PRINT "If an average life" 20 PRINT "span is 70 years" 30 PRINT "Then how many" 40 PRINT "generations would have" 50 PRINT "lived in 2000 years?" 60 INPUT "Enter a guess.";GUESS 70 AMOUNT = INT (2000/70) 80 DIFF = ABS (AMOUNT-GUESS) 90 PRINT "The answer was " ;AMOUNT 100 PRINT "You were "; DIFF 110 PRINT "generations off." 120 END RUN THE COOLEST PERSON 10 PRINT "Enter the coolest" 20 INPUT "person you know";COOL$ 30 FOR COUNT = 1 TO 50 40 PRINT COOL$;" is super cool!" 50 NEXT COUNT 60 END RUN 67

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88

67
LIFE
10
PRINT “If an average life”
20
PRINT “span is 70 years”
30
PRINT “Then how many”
40
PRINT “generations would have”
50
PRINT “lived in 2000 years?”
60
INPUT “Enter a guess.”;GUESS
70
AMOUNT = INT (2000/70)
80
DIFF = ABS (AMOUNT-GUESS)
90
PRINT “The answer was ” ;AMOUNT
100
PRINT “You were ”; DIFF
110
PRINT “generations off.”
120
END
RUN
THE COOLEST PERSON
10
PRINT “Enter the coolest”
20
INPUT “person you know”;COOL$
30
FOR COUNT = 1 TO 50
40
PRINT COOL$;“ is super cool!”
50
NEXT COUNT
60
END
RUN