how to generate randon numbers in java code example
Example 1: 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 2: how to create a random number in java
import java.util.Random;
class scratch{
public static void main(String[] args) {
Random rand = new Random();
System.out.println( rand.nextInt(5) );
}
}