当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math random()用法及代码示例


java.lang.Math.random()方法返回大于或等于0.0且小于1.0的伪随机双精度类型数字。 。首次调用此方法时,它会创建一个新的pseudorandom-number生成器,就像使用new java.util.Random表达式一样。

用法:

public static double random()

返回:
This method returns a pseudorandom double greater than or equal to 0.0 and less than 1.0.

范例1:展示java.lang.Math.random()方法的用法。


// Java program to demonstrate working 
// of java.lang.Math.random() method 
import java.lang.Math; 
  
class Gfg1 { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        // Generate random number 
        double rand = Math.random(); 
  
        // Output is different everytime this code is executed 
        System.out.println("Random Number:" + rand); 
    } 
}

输出:

0.5568515217910215

范例2:展示java.lang.Math.random()方法的用法。

// Java program to demonstrate 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); 
        } 
    } 
}

输出:

6
8
10
10
5
3
6
10
4
2


相关用法


注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Math random() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。