Number Guess
Posted: Tue May 09, 2023 11:12 am
Howdy! I'm new to coding in BASIC (and coding in general) so to try it out, I put together a small number guessing game. I got so excited seeing it actually work after a few errors and cleaning up the code. I wanted to share that feeling, so I'm gonna post the code and you'll have to type it out like the old books they sold for computers that ran BASIC. I'm probably one of the least experienced programmers in this whole community, so if there's any improvements to the code that I missed, please feel free to let me know. Good luck!
10 CLS
20 LET X=INT(RND(1)*99)+1:LET T=5
30 PRINT "PICK A NUMBER BETWEEN 1 AND 100."
32 PRINT "YOU HAVE 5 TRIES."
40 IF T=0 THEN PRINT "YOU LOSE. THE NUMBER WAS"X:PRINT:GOTO 60
50 T=T-1:INPUT G
52 IF G<X THEN PRINT "TOO LOW. YOU HAVE"T"TRIES LEFT.":GOTO 40
54 IF G>X THEN PRINT "TOO HIGH. YOU HAVE"T"TRIES LEFT.":GOTO 40
56 IF G=X THEN PRINT"YOU WIN!"
60 PRINT "DO YOU WANT TO PLAY AGAIN?"
62 PRINT " 1 FOR YES 0 FOR NO"
70 INPUT W
72 IF W=1 THEN 20
74 IF W=0 THEN PRINT "GOODBYE"
10 CLS
20 LET X=INT(RND(1)*99)+1:LET T=5
30 PRINT "PICK A NUMBER BETWEEN 1 AND 100."
32 PRINT "YOU HAVE 5 TRIES."
40 IF T=0 THEN PRINT "YOU LOSE. THE NUMBER WAS"X:PRINT:GOTO 60
50 T=T-1:INPUT G
52 IF G<X THEN PRINT "TOO LOW. YOU HAVE"T"TRIES LEFT.":GOTO 40
54 IF G>X THEN PRINT "TOO HIGH. YOU HAVE"T"TRIES LEFT.":GOTO 40
56 IF G=X THEN PRINT"YOU WIN!"
60 PRINT "DO YOU WANT TO PLAY AGAIN?"
62 PRINT " 1 FOR YES 0 FOR NO"
70 INPUT W
72 IF W=1 THEN 20
74 IF W=0 THEN PRINT "GOODBYE"