質問編集履歴
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
```
|
12
12
|
List<Integer> list = new ArrayList<>();
|
13
|
-
for(int i =
|
13
|
+
for(int i = 0; i <= 100; i++) {
|
14
14
|
int random = (int)(Math.random() * 1000);
|
15
15
|
list.add(random);
|
16
16
|
System.out.println(list.get(i));
|