Write a program that plays a reverse guessing game with the user. The user thinks of a

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 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.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: