回答編集履歴

1

追記

2020/05/19 01:21

投稿

episteme
episteme

スコア16612

test CHANGED
@@ -27,3 +27,43 @@
27
27
  ```
28
28
 
29
29
  ですか? それとも他のナニかですか?
30
+
31
+
32
+
33
+ [追記] 追試しました。エラーになりません。
34
+
35
+ ```Java
36
+
37
+ // Trial.java
38
+
39
+
40
+
41
+ public class Trial {
42
+
43
+
44
+
45
+ public static void main(String[] args) {
46
+
47
+ int[] scoreA = new int[5];
48
+
49
+ // scoreA を 0, 1, 2, ... で埋める
50
+
51
+ for (int i =0; i < scoreA.length; i++) {
52
+
53
+ scoreA[i] = i;
54
+
55
+ }
56
+
57
+ // ナカミを確認
58
+
59
+ for (int i =0; i < scoreA.length; i++) {
60
+
61
+ System.out.println(scoreA[i]);
62
+
63
+ }
64
+
65
+ }
66
+
67
+ }
68
+
69
+ ```