Question: Write a java program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows: 1.

Write a java program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows:

1. When the program begins, a random number in the range of 1 through 3 is generated. If the number is 1, then the computer has chosen rock. If the number is 2, then the computer has chosen paper. If the number is 3, then the computer has chosen scissors. (Don't display the computers choice yet.)

2. The user enters his or her choice using the words "rock", "paper", or "scissors" at the keyboard.

3. The computer's choice is displayed.

4. A winner is selected according to the following rules:

If one player chooses rock and the other player chooses scissors, then rock wins. (The rock smashes the scissors.)

If one player chooses scissors and the other player chooses paper, then scissors wins. (Scissors cuts paper.)

If one player chooses paper and the other player chooses rock, then paper wins. (Paper wraps rock.)

If both players make the same choice, the game must be played again to determine the winner.

Write a program that prompts the user to enter their choice and displays an appropriate message if they win, the computer wins or if they have to play again. If they have to play again, the program should loop to ask the user to enter another choice ("rock", "paper" or "scissors) . The computer's choice is randomly generated using the random number generator. The game ends when either the player or the computer wins. The program should ask the user if they want to play again. If the user wants to play again, the program should loop to play the game again.

The user will enter their choice in main and pass the choice to a method.

Make sure that you validate both the user input and the computer input using loops.

One of the methods that you create has to return output to another method or to main.

Use JOptionPane for the input for this problem. Use System.out.println for the output.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!