Write Produce a Pseudocode and a C++ program for a number guessing game. Your program is required to guess what a number a computer has in mind (generate number using built-in Random function) between 0 - 100. The Program prompts the user to enter a number continuously until the number match with random generated number. For each input, the program tells the users whether the input is too low or too high. So, the user can choose the next input intelligently. Sample output is as below. Guess a magic Number between 0 to 100. Enter your Guess: 50 Your Guess is too High Enter your Guess: 25 Your Guess is too High Enter your Guess: 12 Your Guess is too High Enter your Guess: 6 Your Guess is too Low Enter your Guess: 9 Your Guess is too High Enter your Guess: 7 Your Guess is too Low Enter your Guess: 8 Yes, you guessed the right number 8
Write Produce a Pseudocode and a C++ program for a number guessing game.
Your program is required to guess what a number a computer has in mind (generate number using built-in Random function) between 0 - 100. The Program prompts the user to enter a number continuously until the number match with random generated number.
For each input, the program tells the users whether the input is too low or too high. So, the user can choose the next input intelligently.
Sample output is as below.
Guess a magic Number between 0 to 100. Enter your Guess: 50
Your Guess is too High
Enter your Guess: 25
Your Guess is too High
Enter your Guess: 12
Your Guess is too High
Enter your Guess: 6
Your Guess is too Low
Enter your Guess: 9
Your Guess is too High
Enter your Guess: 7
Your Guess is too Low
Enter your Guess: 8
Yes, you guessed the right number 8
Trending now
This is a popular solution!
Step by step
Solved in 6 steps with 2 images