Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -0,0 +1,30 @@
PROC usrinpt:
LOCAL string$(15),number&
WHILE string$=""
PRINT "Please enter a string."
INPUT string$
IF string$=""
PRINT "Nothing was entered. Please try again."
PAUSE 60
CLS
ENDIF
ENDWH
PRINT "Thank you! You entered: ";string$
WHILE number&<>75000
PRINT "Please enter the number 75000."
TRAP INPUT number&
IF ERR=-1
PRINT
PRINT "That's not a valid number. Please try again."
PAUSE 60
CLS
ELSEIF number&<>75000
PRINT "Wrong number. Please try again."
PAUSE 60
CLS
ENDIF
ENDWH
PRINT "Good job! You successfully entered 75000!"
PRINT "Press any key to continue."
GET
ENDP