Thursday, January 22, 2026
HomeLanguagesJavaStrictMath random() Method in Java

StrictMath random() Method in Java

The random() is an inbuilt method of StrictMath class in java which is used to get a double value with a positive sign that is greater than or equal to 0.0 and less than 1.0. random() method is accurately organized to acquiesce appropriate use by more than one thread. The values which are returned are adopted pseudorandomly with constant distribution from that range. 
Syntax: 

public static double random()

Parameters: The method does not accept any parameters. 
Return Value: The method returns the pseudorandom double which is greater than or equal to 0.0 and less than 1.0.
Below programs illustrate the Java.lang.StrictMath.random() Method:
Program 1:  

java




// Java program to illustrate the
// Java.lang.StrictMath.random() Method
import java.lang.*;
 
public class Geeks {
 
public static void main(String[] args) {
 
    double random_num = StrictMath.random();
    System.out.println("Generated random number = "+ random_num);
     
    random_num = StrictMath.random();
    System.out.println("Generated random number = "+ random_num);
 
}
}


Output: 

Generated random number = 0.7276560829796844
Generated random number = 0.6646167632286143

 

Program 2: 

java




// Java program to illustrate the
// Java.lang.StrictMath.random() Method
import java.lang.*;
 
public class Geeks {
 
public static void main(String[] args) {
 
    double random_num = StrictMath.random();
    System.out.println("Generated random number = "+ random_num);
     
    random_num = StrictMath.random();
    System.out.println("Generated random number = "+ random_num);
 
}
}


Output: 

Generated random number = 0.5071995313935024
Generated random number = 0.6938224427158157

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS