使用Math类常用方法例如:获取随机数方法
使用Math类获取随机数的常用方法是使用Math类的random()方法。该方法返回一个0到1之间的随机浮点数。
示例代码如下:
public class RandomNumberExample {
public static void main(String[] args) {
// 生成一个0到1之间的随机浮点数
double randomNum = Math.random();
System.out.println("随机数: " + randomNum);
// 生成一个指定范围内的随机整数
int min = 1;
int max = 10;
int randomInt = (int) (Math.random() * (max - min + 1)) + min;
System.out.println("随机整数: " + randomInt);
}
}
输出结果可能是:
随机数: 0.7241345197266113
随机整数: 7
在上述示例中,random()方法生成一个随机浮点数,然后将其转换为指定范围内的随机整数。需要注意的是,由于Math.random()方法返回的是一个0到1之间的浮点数,所以需要使用乘法、加法和类型转换来得到指定范围内的随机整数
原文地址: https://www.cveoy.top/t/topic/ifSB 著作权归作者所有。请勿转载和采集!