-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiArrEx1.java
53 lines (43 loc) · 1.56 KB
/
MultiArrEx1.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
import java.util.Scanner;
public class MultiArrEx1 {
public static void main(String[] args) {
final int SIZE = 10;
int x = 0, y = 0;
char[][] board = new char[SIZE][SIZE];
byte[][] shipBoard = {
{0, 0, 0, 0, 0, 1, 0, 0},
{1, 1, 1, 1, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0},
{1, 1, 0, 1, 0, 0, 0, 0},
{0, 0, 0, 1, 0, 0, 0, 0},
{0, 0, 0, 1, 0, 0, 0, 0},
{0, 0, 0, 0, 1, 1, 1, 0},
};
for (int i = 1; i < SIZE; i++) {
board[0][i] = board[i][0] = (char) (i + '0');
}
Scanner sc = new Scanner(System.in);
while (true) {
System.out.println("좌표를 입력하세요. (종료는 00)>");
String input = sc.nextLine();
if (input.length() == 2) {
x = input.charAt(0) - '0';
y = input.charAt(1) - '0';
if (x == 0 && y == 0) {
break;
}
}
if (input.length() != 2 || x <= 0 || x >= SIZE || y <= 0 || y >= SIZE) {
System.out.println("잘못된 입력입니다. 다시 입력해주세요.");
continue;
}
board[x][y] = shipBoard[x - 1][y - 1] == 1 ? 'O' : 'X';
for (int i = 0; i < SIZE; i++) {
System.out.println(board[i]);
}
System.out.println();
}
}
}