回答編集履歴
1
訂正
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
Scanner scan = new Scanner(System.in).useDelimiter("[\\s]+");
|
2
2
|
for(int i=0;i<3;i++)
|
3
3
|
for(int j=0;j<3;j++)
|
4
|
-
cell[
|
4
|
+
cell[3*i+j] = scan.nextInt();
|