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 istoo 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”,
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here