random between two numbers java code example
Example 1: random number in range java
(int)(Math.random() * ((max - min) + 1)) + min
Copy
Example 2: random between two numbers java
Random r = new Random();
int low = 10;
int high = 100;
int result = r.nextInt(high-low) + low;
Example 3: java generate random integer in range
import java.util.concurrent.ThreadLocalRandom;
// nextInt is normally exclusive of the top value,
// so add 1 to make it inclusive
int randomNum = ThreadLocalRandom.current().nextInt(min, max + 1);
Example 4: random in java a to b
Min + (int)(Math.random() * ((Max - Min) + 1))