-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNim.java
More file actions
159 lines (155 loc) · 6 KB
/
Nim.java
File metadata and controls
159 lines (155 loc) · 6 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* Created by fattyduck on 4/3/15.
*/
import java.util.Scanner;
public class Nim {
public static void main(String[] args){
String player1, player2, answer;
Scanner scan=new Scanner(System.in);
int a=3;
int b=4;
int c=5;
int taken;
int player=1;
String take="How many do you want to remove from Pile ";
System.out.print("Player 1, enter your name:");
player1=scan.nextLine();
System.out.print("Player 2, enter your name:");
player2=scan.nextLine();
while(true){
if((a+b+c)<=0&&player==1){
System.out.println(player1 + " is the winner");
break;
}else if((a+b+c)<=0&&player==2){
System.out.println(player2 + " is the winner");
break;
}
if(player==1){
System.out.println("A: "+a+" B: "+b+" C: "+c);
System.out.println(player1 + " choose a pile");
answer=scan.nextLine();
if(answer.equalsIgnoreCase("a")){
System.out.print(take+" A:");
taken=scan.nextInt();
if(taken<=a){
a-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=a){
a-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=2;
}
}
player=2;
}else if(answer.equalsIgnoreCase("b")){
System.out.print(take+" B:");
taken=scan.nextInt();
if(taken<=b){
b-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=b){
b-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=2;
}
}
player=2;
}else if(answer.equalsIgnoreCase("c")){
System.out.print(take+" C:");
taken=scan.nextInt();
if(taken<=c){
c-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=c){
c-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=2;
}
}
player=2;
}
}
if(player==2){
System.out.println("A: "+a+" B: "+b+" C: "+c);
System.out.println(player2 + " choose a pile");
answer=scan.nextLine();
if(answer.equalsIgnoreCase("a")){
System.out.print(take+" A:");
taken=scan.nextInt();
if(taken<=a){
a-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=a){
a-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=1;
}
}
player=1;
}else if(answer.equalsIgnoreCase("b")){
System.out.print(take+" B:");
taken=scan.nextInt();
if(taken<=b){
b-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=b){
b-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=1;
}
}
player=1;
}else if(answer.equalsIgnoreCase("c")){
System.out.print(take+" C:");
taken=scan.nextInt();
if(taken<=c){
c-=taken;
}else{
System.out.println("You can't take more than there is, pick again");
taken=scan.nextInt();
if(taken<=c){
c-=taken;
}else{
System.out.println("Clearly you can't read directions");
a=0;
b=0;
c=0;
player=1;
}
}
player=1;
}
}
}
}
}