how to make a random phone number generator in java 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) );
//prints a random Int between 0 - 4 (including 0 & 4);
}
}
Example 2: Random number generator in java
// example on Math.random() method in java
public class RandomMethodExample
{
public static void main(String[] args)
{
// here we are generating random doubles
System.out.println(Math.random());
System.out.println(Math.random());
}
}