Michael
0
Q:

random int java

import java.util.Random;

Random rand = new Random();

// Obtain a number between [0 - 49].
int n = rand.nextInt(50);

// Add 1 to the result to get a number from the required range
// (i.e., [1 - 50]).
n += 1;
28
	(int)(Math.random() * ((max - min) + 1)) + min
Copy
8
double x = (Math.random()*((max-min)+1))+min;
7
import java.util.Random;

Random rand = new Random();
int random_integer = rand.nextInt(upperbound-lowerbound) + lowerbound;
9
Random random = new Random();   
// Generates random integers 0 to 49  
int x = random.nextInt(50);  
3
import java.util.Random;

Random rand = new Random();

//the 5 is the upper bound so it will choose a random number
//from 0 to 5
int random = rand.nextInt(5);
-1
int rand = ThreadLocalRandom.current().nextInt(x,y);
1

New to Communities?

Join the community