回答編集履歴
1
ぼけ
test
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
int n=0;
|
4
4
|
|
5
|
-
while (
|
5
|
+
while (++n<=100)
|
6
6
|
|
7
|
-
System.out.prntf("%4d"+(n%10==0?"%n":""),n);
|
7
|
+
System.out.printf("%4d"+(n%10==0?"%n":""),n);
|
8
8
|
|
9
9
|
```
|
10
10
|
|