質問編集履歴
2
更新しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,27 +1,31 @@
|
|
1
|
+
```Java
|
2
|
+
|
1
3
|
public class ArraySample {
|
2
4
|
|
3
5
|
|
4
6
|
|
5
|
-
|
7
|
+
public static void main(String[] args) {
|
6
8
|
|
7
9
|
|
8
10
|
|
9
|
-
|
11
|
+
int sum = 0;
|
10
12
|
|
11
|
-
|
13
|
+
int[] number = new int[3];
|
12
14
|
|
13
15
|
|
14
16
|
|
15
|
-
|
17
|
+
for(int i = 0; i < 3; i++){
|
16
18
|
|
17
|
-
|
19
|
+
number[i] = i * 10;
|
18
20
|
|
19
|
-
|
21
|
+
sum += number[i];
|
20
|
-
|
21
|
-
}
|
22
|
-
|
23
|
-
System.out.println("合計値は" + sum + "です");
|
24
|
-
|
25
|
-
}
|
26
22
|
|
27
23
|
}
|
24
|
+
|
25
|
+
System.out.println("合計値は" + sum + "です");
|
26
|
+
|
27
|
+
}
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
```
|
1
ご指摘をいただき編集しました。 int型他と配列が混同していたところを修正しfor文で配列に値を入れて合計値を出しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,32 +1,26 @@
|
|
1
|
-
|
1
|
+
public class ArraySample {
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
class ArraySample{
|
6
|
-
|
7
|
-
public static void main(String[] args){
|
5
|
+
public static void main(String[] args) {
|
8
6
|
|
9
7
|
|
10
8
|
|
11
|
-
|
9
|
+
int sum = 0;
|
12
10
|
|
13
|
-
int number = new int[3];
|
11
|
+
int[] number = new int[3];
|
14
12
|
|
15
|
-
|
16
13
|
|
17
|
-
for(int i = 0; i < number.length; i++){
|
18
14
|
|
19
|
-
|
15
|
+
for(int i = 0; i < 3; i++){
|
20
16
|
|
21
|
-
|
17
|
+
number[i] = i * 10;
|
22
18
|
|
23
19
|
sum += number[i];
|
24
20
|
|
25
21
|
}
|
26
22
|
|
27
|
-
|
28
|
-
|
29
|
-
System.out.println("合計値は" +
|
23
|
+
System.out.println("合計値は" + sum + "です");
|
30
24
|
|
31
25
|
}
|
32
26
|
|