java code random number generator code example
Example 1: 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 2: how to generate random number in java
double x = (Math.random()*((max-min)+1))+min;
Example 3: Random number generator in java
public class RandomMethodExample
{
public static void main(String[] args)
{
System.out.println(Math.random());
System.out.println(Math.random());
}
}