Write a C++ program for a number guessing game. The program generates and stores a random number and prompts a user to guess the number. If user guess is less than the number, display “Sorry, guess is...


Write a C++ program for a number guessing game. The program generates and stores a random number and prompts a user to guess the number. If user guess is less than the number, display “Sorry, guess is
too low”, if user guess is greater than the number, display “Sorry, guess is too high”. If user guesses the right number, display “Congratulations, you have guessed the number”, and number of users tries to guess a number. The program should keep on taking a user input, until user guesses the number.


Sample Output 1 (Number 50):
Enter a number to guess: 50
“Congratulations, you have guessed the number” in first try.
Sample Output 2 (Number 50):
Enter a number to guess: 25
“Sorry, guess is too low”
Enter a number to guess: 60
“Sorry, guess is too high”
Enter a number to guess: 50


“Congratulations, you have guessed the number in 3 tries”,



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here