-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise_02_RockPaperScissorGame.java
49 lines (44 loc) · 2.02 KB
/
Exercise_02_RockPaperScissorGame.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.company;
import java.util.Scanner;
import java.util.Random;
public class Exercise_02_RockPaperScissorGame {
public static void main(String[] args) {
Random rn = new Random();
Scanner sc = new Scanner(System.in);
System.out.println("Welcome to the game of Rock,Paper,Scissors against the Computer \n This is a program made using Java");
System.out.println("Here, \n 0 = Rock \n 1 = Paper \n 2 = Scissor \n");
System.out.println("Input your number below :");
int myChoice = sc.nextInt();
int computerChoice = rn.nextInt(3);
switch (myChoice){
case 0:
if (computerChoice == 0){
System.out.println("Draw \n The computer also selected Rock !!");
}else if (computerChoice == 1){
System.out.println("Loss \n The computer selected Paper !!");
}else {
System.out.println("Win \n The computer selected Scissors !!");
}
break;
case 1:
if (computerChoice == 0){
System.out.println("Win \n The computer selected Rock !!");
}else if (computerChoice == 1){
System.out.println("Draw \n The computer also selected Paper !!");
}else {
System.out.println("Loss \n The computer selected Scissors !!");
}
break;
case 2:
if (computerChoice == 0){
System.out.println("Win \n The computer selected Rock !!");
}else if (computerChoice == 1){
System.out.println("Loss \n The computer selected Paper !!");
}else {
System.out.println("Draw \n The computer also selected Scissors !!");
}
break;
}
System.out.println("\nThank you for playing as well as using my Java code !! =)");
}
}