-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcwh_41_ex2sol.java
37 lines (33 loc) · 1.16 KB
/
cwh_41_ex2sol.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
import java.util.Random;
import java.util.Scanner;
public class cwh_41_ex2sol {
public static void main(String[] args) {
// 0 for Rock
// 1 for Paper
// 2 for Scissor
Scanner sc = new Scanner(System.in);
System.out.print("Enter 0 for Rock, 1 for Paper, 2 for Scissor ");
int userInput = sc.nextInt();
Random random = new Random();
int computerInput = random.nextInt(3);
if (userInput == computerInput) {
System.out.println("Draw");
}
else if (userInput == 0 && computerInput == 2 || userInput == 1 && computerInput == 0
|| userInput == 2 && computerInput == 1) {
System.out.println("You Win!");
} else {
System.out.println("Computer Win!");
}
// System.out.println("Computer choice: " + computerInput);
if(computerInput==0){
System.out.println("Computer choice: Rock");
}
else if(computerInput==1){
System.out.println("Computer choice: Paper");
}
else if(computerInput==2){
System.out.println("Computer choice: Scissors");
}
}
}