Java生成随机数
类包
import java.util.Random
演示代码
package cn.edu.Lab;
import java.util.Random;
public class test {
public static void main(String[] args) {
Random r = new Random();//默认以当前时间作为随机数种子
int k = r.nextInt();
System.out.println("随机整数:" + k);
double t = r.nextDouble();//随机数范围为[0, 1)
System.out.println("随机浮点数:" + t);
}
}
原文地址:https://blog.csdn.net/Chasingthewinds/article/details/139360416
免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!