Question
JAVA PROGRAMMING HOMEWORK. PLEASE HELP! Your program will choose a random 4 digit number as the secret number. Your program must prompt the user to
JAVA PROGRAMMING HOMEWORK. PLEASE HELP!
Your program will choose a random 4 digit number as the secret number. Your program must prompt the user to enter a 4 digit number as their guess. The program will respond with a message indicating how many of the digits in the users guess are the same as the digit in the same position in the secret number.For example, if the secret number is 3749, and the users guess is 9753, then the program would respond with the message You matched 1, because only one of the digits (the 7) in the users guess is the same as the digits in the same position in the secret number. The program will allow the user to continue to enter guesses until they guess the correct secret number.After the user has entered the secret number, the program will output a count of the total number of guesses the user took to find the secret number. Then the program will ask the user if they would like to play again. If the user answers yes, then the program will choose another random 4 digit number and play continues as described above.
Key points: Write programs that use loops to repeat instructions, Demonstrate the use of while or for loops in Java, Use conditional expression to control loops and decisions
SAMPLE OUTPUT:
Guess the 4 digit number!
Guess 1: 0000
You matched 0
Guess 2: 1111
You matched 1
Guess 3: 1234
You matched 1
Guess 4: 2444
You matched 2
Guess 5: 1442
You matched 4
Congratulations! You guessed the right number in 5 guesses.Would you like to play again (yes/no)?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started