random() Method in java

Java Programming Language / Number Class in java

796

Program:

public class RandomMethod {

   public static void main(String args[]) {
         System.out.println( Math.random() );
         System.out.println( Math.random() );
      }
}

/* 
Returns a random number. 
*/

Output:

0.24565000771232626
0.7864317023473801
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.