Question: Write a program that plays a reverse guessing game with the user. The user thinks of a number between 1 and 10 , and the
Write a program that plays a reverse guessing game with the user. The user thinks of a number between 1 and 10 , and the computer repeatedly tries to guess it by guessing random numbers. It’s fine for the computer to guess the same random number more than once. At the end of the game, the program reports how many guesses it made. Here is a sample execution:
This program has you, the user, choose a number between 1 and 10. Then I, the computer, will try my best to guess it.
Is it 8? (y/n) n
Is it 7? (y/n) n
Is it 5? (y/n) n
Is it 1? (y/n) n
Is it 8? (y/n) n
Is it 1? (y/n) n
Is it 9? (y/n) y
I got your number of 9 correct in 7 guesses.
For an added challenge, consider having the user hint to the computer whether the correct number is higher or lower than the computer’s guess. The computer should adjust its range of random guesses on the basis of the hint.
Step by Step Solution
3.49 Rating (169 Votes )
There are 3 Steps involved in it
Asks the user to do multiplication problems and scores them public class ReverseGuess public static ... View full answer
Get step-by-step solutions from verified subject matter experts
