Answers for "random range from int"

1

random int in range java

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);
Posted by: Guest on October-26-2020
0

random in range

// Get a random number between 20 and 30 
Math.round((Math.random() * (30 - 20 + 1)) + 20);
Posted by: Guest on May-11-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language