ChipMaster's bwBASIC
This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- rem -----------------------------------------------------
- rem elseif.bas -- Test MultiLine IF-ELSEIF-THEN statement
- rem -----------------------------------------------------
-
- Print "ELSEIF.BAS -- Test MultiLine IF-THEN-ELSE Constructions"
-
- Print
- Print "The program should detect if the number you enter is 4 or 5 or 6."
- Input "Please enter a number, 1-9"; x
-
- If x = 4 then
- Print "The number is 4."
-
- Elseif x = 5 then
- Print "The number is 5."
-
- Elseif x = 6 then
- Print "The number is 6."
-
- Else
- Print "The number is neither 4 nor 5 nor 6."
-
- End If
-
- Print "This concludes our test."
|