RosettaCodeData/Task/Guess-the-number/00-TASK.txt
2023-07-01 13:44:08 -04:00

17 lines
684 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>