QBASIC Question
Posted: Thu Aug 09, 2007 7:44 pm
Ok, here is the code:
The problem is when it prints out it looks like this:
LOGIN:?
I want it to print like this:
LOGIN:
How would I get rid of the "?".
Regards,
Austin
Code: Select all
1 PRINT "LOGIN:"; : INPUT L$
L$ = UCASE(L$)
IF L$ = "AUSTIN" THEN
PRINT "LOGGED ON AS AUSTIN."
ELSE PRINT "LOGIN NAME INCORRECT, TRY AGAIN."
GOTO 1
END IF
LOGIN:?
I want it to print like this:
LOGIN:
How would I get rid of the "?".
Regards,
Austin