Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
17
Task/Nim-game/QBasic/nim-game.basic
Normal file
17
Task/Nim-game/QBasic/nim-game.basic
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
monton = 12
|
||||
llevar = 0
|
||||
|
||||
DO WHILE monton > 0
|
||||
PRINT USING "There are ## tokens remaining. How many would you like to take"; monton;
|
||||
INPUT llevar
|
||||
DO WHILE llevar = 0 OR llevar > 3
|
||||
INPUT "You must take 1, 2, or 3 tokens. How many would you like to take"; llevar
|
||||
LOOP
|
||||
|
||||
PRINT "On my turn I will take"; 4 - llevar; " token(s)."
|
||||
monton = monton - 4
|
||||
LOOP
|
||||
|
||||
PRINT
|
||||
PRINT "I got the last token. I win! Better luck next time."
|
||||
END
|
||||
Loading…
Add table
Add a link
Reference in a new issue