Hey guys this is my first post. I am fairly new to Java and it would be much appreciated if I could get some help.
I am trying to solve this homework problem.
Game: scissor, rock, paper) Write a program 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.
This is what I currently have and I am stuck here. Anything would be helpful!
//Create a Scanner for Input Scanner input = new Scanner(System.in); //Pick a scissor (0), rock (1), paper (2) System.out.print ("scissor (0), rock (1), paper (2): "); //Pick aRandomNumber between 0 and 2 int aRandomNumber = (int) (Math.random() * 3); //Determine if scissor (0), rock (1), paper (2) int result = aRandomNumber; String hand; if (result == 0) { hand = " scissor"; } else if (result == 1) { hand = " rock"; } else if (result == 2) { hand = " paper"; } System.out.println("Enter scissor (0), rock (1), paper (2)" + aRandomNumber +); // } }