回答編集履歴
1
㎤ → ㎠
answer
CHANGED
@@ -27,8 +27,8 @@
|
|
27
27
|
try {
|
28
28
|
int x = Integer.valueOf(args[0]);
|
29
29
|
int y = Integer.valueOf(args[1]);
|
30
|
+
|
30
|
-
System.out.printf("%d x %d = %d
|
31
|
+
System.out.printf("%d x %d = %d ㎠", x, y, x * y);
|
31
|
-
System.out.printf("%d x %d = %d ㎤", x, y, x * y);
|
32
32
|
} catch (NumberFormatException e) {
|
33
33
|
usage();
|
34
34
|
System.exit(1);
|
@@ -44,8 +44,7 @@
|
|
44
44
|
```
|
45
45
|
|
46
46
|
* 結果
|
47
|
-

|
48
48
|
|
49
49
|
フォントの誤りでしょうね
|
50
|
-
|
51
50
|
久々10年ぶりぐらいに cmd.exe 出力する java を実行したが CHCPはいるのか(わすれてたな)
|