ANSWERS: 3
-
Basic - For next loop REM Prints "Hello World" 10 times For I = 1 to 10 Print "Hello World" Next I END
-
This will type out the multiplication table of whichever number you type in: PRINT "Multiplication Table Calculator" INPUT "Enter multiplier";multiplier FOR n=1 TO 12 PRINT n " x" multiplier " =" n*multiplier NEXT
-
10 goto 20 20 goto 10
Copyright 2023, Wired Ivy, LLC