random rand 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: how to generate a random number in java
import java.util.Random;
Random rand = new Random();
int maxNumber = 10;
int randomNumber = rand.nextInt(maxNumber) + 1;
System.out.println(randomNumber);
Example 3: Random number generator in java
import java.util.Random;
public class JavaRandomClass
{
public static void main(String[] args)
{
Random random = new Random();
int randInt1 = random.nextInt(1000);
int randInt2 = random.nextInt(1000);
System.out.println("Random Integers: " + randInt1);
System.out.println("Random Integers: " + randInt2);
double randDou1 = random.nextDouble();
double randDou2 = random.nextDouble();
System.out.println("Random Doubles: " + randDou1);
System.out.println("Random Doubles: " + randDou2);
}
}
Example 4: java random usage
import java.util.Random;
Random rndm = new Random();
int mnmbr = 10;
int rndNumber = rndm.nextInt(mnumber) + 1;
System.out.println(rndNumber);
Example 5: random number generator java
import java.util.Random;
class GenerateRandom {
public static void main( String args[] ) {
Random rand = new Random();
int upperbound = 25;
int int_random = rand.nextInt(upperbound);
double double_random=rand.nextDouble();
float float_random=rand.nextFloat();
System.out.println("Random integer value from 0 to" + (upperbound-1) + " : "+ int_random);
System.out.println("Random float value between 0.0 and 1.0 : "+float_random);
System.out.println("Random double value between 0.0 and 1.0 : "+double_random);
}
}