EN
Java - generate list with 10 random numbers
10 points
xxxxxxxxxx
1
int minVal = 100;
2
int maxVal = 200;
3
List<Integer> list = new ArrayList<>();
4
5
for (int i = 0; i < 10; i++) {
6
int randInt = ThreadLocalRandom.current().nextInt(minVal, maxVal);
7
list.add(randInt);
8
}
9
10
// [159, 170, 141, 165, 119, 169, 102, 195, 142, 142]
11
System.out.println(list);
We can also achieve it with java 8 stream API, look at this post:
Java 8 - Int Stream API generate list with 10 random numbers
https://dirask.com/q/wDk3AD