program should be in JAVA , Thank you 5. Rock, Paper, Scissors Game Write a prog
ID: 3911732 • Letter: P
Question
program should be in JAVA , Thank you
5. Rock, Paper, Scissors Game Write a program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows. (a) 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 computer's choice yet.) (b) The user enters his or her choices of "rock", "paper", or "scissors" at the keyboard. (You can use a menu if you prefer.) (c) The computer's choice is displayed. (d) A winner is selected according to the following rules If one player chooses rock and the other player chooses scissors, If one player chooses scissors and the other player chooses . If one player chooses rock and the other player chooses paper, . If both players make the same choice, the game must be played then rock wins. (The rock smashes the scissors.) paper, then scissors then paper wins. (Paper wraps rock) again to determine the winner Be sure to divide the program into methods that perform each major task.Explanation / Answer
import java.util.*;
import java.lang.*;
import java.io.*;
public class Solution
{
public static void main (String[] args)
{
Scanner s=new Scanner(System.in);
System.out.println("Welcome to the Rock, paper and Scissors Game");
Random random = new Random();
//Computer Generated number
int randomNumber = random.nextInt(3)+1;
//System.out.println(randomNumber);
System.out.println("Please enter your choice:");
System.out.println("1 for rock, 2 for paper, 3 for scissors");
int in=s.nextInt();
if(randomNumber==1)
System.out.println("Computer selected rock");
else if(randomNumber==2)
System.out.println("Computer selected paper");
else
System.out.println("Computer selected scissors");
if(in==randomNumber)
{
System.out.println("Game Draw. Play Again");
main(null);
}
else if(in==1)
{
if(randomNumber==2)
{
System.out.println("Computer won. You lose");
}
if(randomNumber==3)
{
System.out.println("Computer lose. You won");
}
}
else if(in==2)
{
if(randomNumber==1)
{
System.out.println("Computer lose. You won");
}
if(randomNumber==3)
{
System.out.println("Computer won. You lose");
}
}
else if(in==3)
{
if(randomNumber==1)
{
System.out.println("Computer won. You lose");
}
if(randomNumber==2)
{
System.out.println("Computer lose. You won");
}
}
}
}
//End of Code.
//In case of query please ask me.
//Thanks. Please Vote up.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.