-
Notifications
You must be signed in to change notification settings - Fork 0
/
RspGame.java
54 lines (50 loc) · 1.1 KB
/
RspGame.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
50
51
52
53
54
class RspGame{
String p1;
String p2;
RspGame(String a,String b){
p1=a;
p2=b;
}
void play(){
if(p1.equals("r")){
if(p2.equals("r")){
System.out.println("비겼습니다.");
}
else if(p2.equals("s")){
System.out.println("player 1이 이겼습니다.");
}
else if(p2.equals("p")){
System.out.println("player 2이 이겼습니다. ");
}
}
else if(p1.equals("s")){
if(p2.equals("r")){
System.out.println("player 2이 이겼습니다.");
}
else if(p2.equals("s")){
System.out.println("비겼습니다.");
}
else if(p2.equals("p")){
System.out.println("player 1이 이겼습니다.");
}
}
else if(p1.equals("p")){
if(p2.equals("r")){
System.out.println("player 1이 이겼습니다.");
}
else if(p2.equals("s")){
System.out.println("player 2이 이겼습니다.");
}
else if(p2.equals("p")){
System.out.println("비겼습니다.");
}
}
else{
System.out.println("잘못된입력입니다. 다시 입력해주세요.");
}
}
public static void main(String[] args) {
RspGame p=new RspGame("r", "s");
p.play();
}
}