RosettaCodeData/Task/Guess-the-number-With-feedback/00DESCRIPTION
2016-12-05 22:15:40 +01:00

14 lines
508 B
Text

;Task:
Write a game (computer program) that follows the following rules:
::* The computer chooses a number between given set limits.
::* The player is asked for repeated guesses until the the target number is guessed correctly
::* At each guess, the computer responds with whether the guess is:
:::::* higher than the target,
:::::* equal to the target,
:::::* less than the target,   or
:::::* the input was inappropriate.
;Related task:
*   [[Guess the number/With Feedback (Player)]]
<br><br>