random int in java code example
Example 1: java random number
import java.util.Random;
Random rand = new Random();
int n = rand.nextInt(50);
n += 1;
Example 2: java random numbers in specific range
import java.util.Random;
Random rand = new Random();
int random_integer = rand.nextInt(upperbound-lowerbound) + lowerbound;
Example 3: random number in range java
(int)(Math.random() * ((max - min) + 1)) + min
Copy
Example 4: random numbers java
int random = (int) (Math.random()*(max-min+1)+min);
Example 5: how to generate random number in java
double x = (Math.random()*((max-min)+1))+min;
Example 6: java generate random integer in range
import java.util.concurrent.ThreadLocalRandom;
int randomNum = ThreadLocalRandom.current().nextInt(min, max + 1);