home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Millennium Time Capsule
/
AC2000.BIN
/
disks
/
ac6_disk
/
tutorial.s
/
hbasic3.tut
/
example3.bas
next >
Wrap
BASIC Source File
|
1997-06-11
|
277b
|
13 lines
INPUT " Input number:",a
IF a<10 THEN
PRINT "a is below ten!"
ELSEIF a<=10 THEN
PRINT "a is below ten or equal to ten!"
ELSEIF a>10 THEN
PRINT "a is above ten!"
ELSEIF a>=10 THEN
PRINT "a is above ten or equal to 10"
ELSE
PRINT "a equals anything else"
END IF