EN
Java - generate random number between 1 and 100
13
points
Generate random number between 1 and 100 in Java
It can be accomplished with usage of java.util.concurrent.ThreadLocalRandom
public static int nextInt(int min, int max) {
return ThreadLocalRandom.current().nextInt(min, max);
}
Example:
System.out.println(nextInt(1, 100)); // 46
System.out.println(nextInt(1, 100)); // 65
System.out.println(nextInt(1, 100)); // 94
System.out.println(nextInt(1, 100)); // 18
System.out.println(nextInt(1, 100)); // 25
There are other ways to achieve it, look at this post:
https://dirask.com/q/VjoP81
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