(int i)
| 195 | } |
| 196 | |
| 197 | public static Piece convertIntToPiece(int i) { |
| 198 | if (i == 1) { |
| 199 | return Piece.Blue; |
| 200 | } else if (i == 2) { |
| 201 | return Piece.Red; |
| 202 | } else { |
| 203 | return Piece.Empty; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | public static void main(String[] args) { |
| 208 | for (int k = 0; k < 100; k++) { |