Write a Guess the Number game that has three levels of difficulty. The first level of difficulty would be a number between 1 and 10(include 10). The second difficulty set would be between 1 and 100(include 100). The third difficulty set would be between 1 and 1000(include 1000).
Prompt for the difficulty level, and then start the game. The computer picks a random number in that range and prompts the player to guess that number. Each time the player guesses, the computer should give the player a hint as to whether the number is too high or too low. The computer should also keep track of the number of guesses. if the number of guesses is larger than 8, the computer will end the game and prompt “Better luck next time”. Once the player guesses the correct number, the computer should present the number of guesses and ask if the player would like to play again. (1 for yes or 0 for no)
Please see below examples for each prompts
Let’s plan Guess the NumberPick a difficulty level (1,2,3): 1I have my number. What’s your guess? 4Too low. Guess again: 8Too low. Guess again: 9You got it in 3 guesses!Play again? 1Let’s plan Guess the NumberPick a difficulty level (1,2,3): 3I have my number. What’s your guess? 23Too low. Guess again: 24Too low. Guess again: 25Too low. Guess again: 26Too low. Guess again: 27Too low. Guess again: 28Too low. Guess again: 29Too low. Guess again: 30Better luck next timePlay again? 0