RosettaCodeData/Task/Guess-the-number/00DESCRIPTION
2017-09-25 22:28:19 +02:00

16 lines
681 B
Text

;Task:
Write a program where the program chooses a number between   '''1'''   and   '''10'''.
A player is then prompted to enter a guess.   If the player guesses wrong,   then the prompt appears again until the guess is correct.
When the player has made a successful guess the computer will issue a   "Well guessed!"   message,   and the program exits.
A   [[:Category:Conditional loops|conditional loop]]   may be used to repeat the guessing until the user is correct.
;Related tasks:
*   [[Bulls and cows]]
*   [[Bulls and cows/Player]]
*   [[Guess the number/With Feedback]]
*   [[Mastermind]]
<br><br>