Question: 6-2 (Game: scissor, rock, paper) (Cont Programming Lab 3-17) (Programming Exercise 5.34) Write a program IN JAVA that plays the popular scissor-rock-paper game. (A scissor
6-2 (Game: scissor, rock, paper) (Cont Programming Lab 3-17) (Programming Exercise 5.34)
Write a program IN JAVA that plays the popular scissor-rock-paper game. (A scissor can cut a paper, a rock can knock a scissor, and a paper can wrap a rock.) The program randomly generates a number 0, 1, or 2 representing scissor, rock, and paper. The program prompts the user to enter a number 0, 1, or 2 and displays a message indicating whether the user or the computer wins, loses, or draws. Here are sample runs: this program cant be too complicated because it is an introduction class and it will be obvious. he expects us to only know java up till for loops and while loops and d-while loops. no fancy things. only random library and scanner
Enter your selection: scissor (0), rock (1), paper (2): 1
The computer is scissor. You are rock. You won
Enter your selection: scissor (0), rock (1), paper (2): 2
The computer is paper. You are paper too. It is a draw
Now revise the program to let the user continuously play until either the user or the computer wins more than two times than its opponent.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
