Question: Java Rock, Paper, Scissors Game. Write a program that lets the user play the game of Rock, Paper Scissors against the computer. See p. 321
Java
Rock, Paper, Scissors Game. Write a program that lets the user play the game of Rock, Paper Scissors against the computer. See p. 321 for details. Create methods for computer selection, user selection, and winner. A good algorithm to use is: (3 + Human Comp) % 3. If the result is 0 its a tie, 1 means human won, 2 means computer won. Use 1 for rock, 2 for paper, 3 for scissors.
Put the above in a loop that continues playing as long as the player wishes.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
