質問編集履歴
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -19,8 +19,8 @@
|
|
19
19
|
|
20
20
|
int [][]array = new int[10][10];
|
21
21
|
|
22
|
-
for(int i =
|
22
|
+
for(int i = 0; i < 10; i++){
|
23
|
-
for(int j =
|
23
|
+
for(int j = 0; j < 10; j++){
|
24
24
|
System.out.println(array[i][j] + " ");
|
25
25
|
}
|
26
26
|
System.out.println("\n");
|