EN
Java - generate array with 10 random numbers
9 points
We can change min and max value to any Integer value, also negative.
xxxxxxxxxx
1
// generate random numbers between 60 and 100
2
int minVal = 60;
3
int maxVal = 100;
4
5
int[] arr = new int[10];
6
for (int i = 0; i < arr.length; i++) {
7
arr[i] = ThreadLocalRandom.current().nextInt(minVal, maxVal);
8
}
9
10
// [98, 93, 80, 61, 64, 70, 73, 64, 71, 86]
11
System.out.println(Arrays.toString(arr));
We can adjust the above code to generate array with 10 random longs, floats or doubles.
To get the code for random min max long, float, double check post:
https://dirask.com/q/zjM2x1
and hashtag #random-min-max with methods for int, long, float, double to generate numbers in range min and max
https://dirask.com/hashtags/random-min-max
There are other ways to generate random integer in range min-max, look at this post:
https://dirask.com/q/VjoP81