Nim game: Difference between revisions

Content added Content deleted
m (→‎{{header|Tiny BASIC}}: Works with (Tom Pittman's) TinyBasic.)
mNo edit summary
Line 3: Line 3:


{{task}}
{{task}}
Nim is a simple game where the second player ─── if they know the trick ─── will always win.
Nim is a simple game where the second player─if they know the trick─will always win.




Line 12: Line 12:




To win every time,   the second player simply takes 4 minus the number the first player took.   So if the first player takes 1,   the second takes 3 ─── if the first player takes 2,   the second should take 2 ─── and if the first player takes 3,   the second player will take 1.
To win every time,   the second player simply takes 4 minus the number the first player took.   So if the first player takes 1,   the second takes 3; if the first player takes 2,   the second should take 2; and if the first player takes 3,   the second player will take 1.



;Task:
;Task:
Design a simple Nim game where the human player goes first, and the computer always wins. The game should enforce the rules.
Design a simple Nim game where the human player goes first, and the computer always wins. The game should enforce the rules.
<br><br>


=={{header|11l}}==
=={{header|11l}}==