Saturday, September 27, 2025
HomeLanguagesJavaRandom nextFloat() method in Java with Examples

Random nextFloat() method in Java with Examples

The nextFloat() method of Random class returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from the random number generator’s sequence.

Syntax:

public float nextFloat() 

Parameters: The function does not accepts any parameter.

Return Value: This method returns the next pseudorandom float number between 0.0 and 1.0.

Exception: The function does not throws any exception.

Program below demonstrates the above mentioned function:

Program 1:




// program to demonstrate the
// function java.util.Random.nextFloat()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
        // create random object
        Random r = new Random();
  
        // check next float value and printing it
        System.out.println("Next float value is = "
                           + r.nextFloat());
    }
}


Output:

Next float value is = 0.25155503

Program 2:




// program to demonstrate the
// function java.util.Random.nextFloat()
  
import java.util.*;
public class GFG {
    public static void main(String[] args)
    {
        // create random object
        Random r = new Random();
  
        // check next float value and printing it
        System.out.println("Next float value is = "
                           + r.nextFloat());
    }
}


Output:

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

Most Popular

Dominic
32323 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6692 POSTS0 COMMENTS
Nicole Veronica
11857 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11914 POSTS0 COMMENTS
Shaida Kate Naidoo
6807 POSTS0 COMMENTS
Ted Musemwa
7073 POSTS0 COMMENTS
Thapelo Manthata
6763 POSTS0 COMMENTS
Umr Jansen
6768 POSTS0 COMMENTS