Answers for "how to put negative integer bound in random method in java"

3

How to add negative random numbers in java

//To get a random number between a set range with min and max:

int number = random.nextInt(max - min) + min;
//It also works with negative numbers.

//So:

random.nextInt(30 + 10) - 10;
// max = 30; min = -10;
//Will yield a random int between -10 and 30 (exclusive).

//It also works with doubles.
Posted by: Guest on September-18-2020

Code answers related to "how to put negative integer bound in random method in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language