PROGRAM REQUIREMENTS:
- Include an output statement (println(…) ) in your main method that tells the user what this program does. For Example: Welcome to Rock-Paper-Scissor Game by {name}
- Include a block Comment header at the top of your Source Code with this info:
/** Programmer: {Your Name} Date: {date}
Assignment: PEx.xx Assignment Name
Description: This program will… summarize what happens
*/
PROGRAMMING ASSIGNMENT: PE3.17 RockPaperScissors Due Date: May 30th
3.17 (Game: scissor, rock, paper) Write a program that plays the popular scissor–rock–paper game.
Rules: A scissor can cut a paper, a rock can knock a scissor, a paper can wrap a rock.
The program should randomly generate a number 0, 1, or 2 representing scissor, rock, and paper.
The program should prompt 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:
Welcome to Rock-Paper-Scissor Game by {name}
Selection options: scissor (0), rock (1), paper (2)
Make a selection: 1
The computer is scissor. You are rock. YOU WIN!!!
Welcome to Rock-Paper-Scissor Game by {name}
Selection options: scissor (0), rock (1), paper (2)
Make a selection: 2
The computer is paper. You are paper too. IT IS A DRAW