Question: in java Guessing Game: Write a program that generates a random number and asks the user to guess what the number is. If the user's

Guessing Game: Write a program that generates a random number and asks the user to guess what the number is. If the user's guess is higher than the random number, the program should display "Too high, try again." If the user's guess is lower than the random number, the program should display "Too low, try again." The program should use a loop that repeats until the user correctly guesses the random number. Also, keep a count of the number of 56 34 45 guesses that the user makes. When the user correctly guesses the random number, the program should display the number of guesses. Here is a sample run: I'm thinking of a number (0-100). Guess what it is: Too high, try again: Too low, try again: Too low, try again: 52 Too low, try again: Too high, try again: 53 Congratulations! You guessed it! I was thinking of number 53. You got it right in 6 guesses. Note: You may choose the range for random member as per your choice - 0 to 10, 0 to 100, 54 etc
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
