質問編集履歴

1

コードの修正

2021/06/20 01:40

投稿

kurira
kurira

スコア28

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ```
12
12
 
13
+ const int rowMax = 8, colMax = 8;//縦、横
14
+
15
+ Stone[,] board = new Stone[rowMax, colMax];
16
+
17
+
18
+
13
19
  public void Start()
14
20
 
15
21
  {
@@ -19,6 +25,10 @@
19
25
  string str;
20
26
 
21
27
  int row, col;
28
+
29
+
30
+
31
+
22
32
 
23
33
 
24
34
 
@@ -152,6 +162,8 @@
152
162
 
153
163
  Console.ReadLine();
154
164
 
165
+ }
166
+
155
167
  ```
156
168
 
157
169