MAD LIB’S

10REM * MAD LIB’S *

20PRINT “Mad Lib’s”

30INPUT “Adjective”; A1$

40INPUT “Verb”; V$

50INPUT “Adverb”; A2$

60PRINT “Once upon a time”

70PRINT “there was a ”; A1$

80PRINT “dog that decided to”

90PRINT V$; “ ”; A2$;“ down the”

100PRINT “hill to fetch its”

110PRINT “bone.”

120END

SECRET NUMBER

0REM **Secret Number**

10NO = RND(100)

20PRINT “Hi! I’ve got a secret number”

30PRINT “between 1 and 100.”

40INPUT “Guess it by typing a number”; ANSWER

50IF ANSWER = NO THEN GOTO 200

60IF ANSWER > NO THEN GOTO 100

70PRINT “No! The secret number is bigger.”

70