This question is in Java. 2D Array Game. Have the program fill a 10 row by 10 column 2D array with random integer numbers between 1 and 100 inclusive. Have the user enter a guess for a number and search the array keeping track of how many times that number appears. Have the computer pick a number and search the array keeping track of how many times that number appears. If the user’s number appears more often, the user wins. If the computer’s number appears more often, the computer wins. If they appear the same number of times. It is a tie. At the end, print out Player’s Guess: (prints #) Number of occurances: (prints #) Computer’s Guess: (prints #) Number of occurrences: (prints #) Winner: (prints player or computer based on who won) At the end, it asks if the player wants to play again. If they do, it generates a new set of numbers for the array. Make sure you take account of common errors.
This question is in Java.
2D Array Game.
Have the program fill a 10 row by 10 column 2D array with random integer numbers between 1 and 100 inclusive.
Have the user enter a guess for a number and search the array keeping track of how many times that number appears.
Have the computer pick a number and search the array keeping track of how many times that number appears.
If the user’s number appears more often, the user wins.
If the computer’s number appears more often, the computer wins.
If they appear the same number of times. It is a tie.
At the end, print out
Player’s Guess: (prints #) Number of occurances: (prints #)
Computer’s Guess: (prints #) Number of occurrences: (prints #)
Winner: (prints player or computer based on who won)
At the end, it asks if the player wants to play again. If they do, it generates a new set of numbers for the array.
Make sure you take account of common errors.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 6 images