how to math.random java code example

Example 1: java math.random

int rand = (int)(Math.random() * range) + min;

Example 2: math.random java

// int rand = (int)(Math.random() * range) + min; 
// Java program to demonstrate Math.random() working 
// of java.lang.Math.random() method 
import java.lang.Math; 
  
class Gfg2 { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        // define the range 
        int max = 10; 
        int min = 1; 
        int range = max - min + 1; 
  
        // generate random numbers within 1 to 10 
        for (int i = 0; i < 10; i++) { 
            int rand = (int)(Math.random() * range) + min; 
  
            // Output is different everytime this code is executed 
            System.out.println(rand); 
        } 
    } 
}

Tags:

Java Example