The method is used to generate a random number between 0.0 and 1.0. The range is: 0.0 =< Math.random < 1.0. Different ranges can be achieved by using arithmetic operations.
static double random()
Here is the detail of parameters −
Example
public class Test { public static void main(String args[]) { System.out.println( Math.random() ); System.out.println( Math.random() ); } }
This will produce the following result:
0.16763945061451657 0.400551253762343
Note − The above result will vary every time you call random() method.
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.