how to make a random Number in jav 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 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) );
}
}
Example 3: 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 4: Random number generator in java
public class RandomMethodExample
{
public static void main(String[] args)
{
System.out.println(Math.random());
System.out.println(Math.random());
}
}