我是靠谱客的博主 健壮超短裙,最近开发中收集的这篇文章主要介绍math.random与Random产生随机数的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.产生0-10之间的随机数   (math.random)

public static void main(String[] args) {
 
 for(int i=0;i<10;i++){
 int n=(int)Math.round(Math.random()*10);
 System.out.println(n);
 }

}

2. 产生1-10之间的随机数(math.random)

public static void main(String[] args) {
 
 for(int i=0;i<10;i++){
 int n=(int)Math.ceil(Math.random()*10);
 System.out.println(n);
 }
}

3.Random产生0-10之间的随机数

public static void main(String[] args) {
 Random ran =new Random();
 for(int i=0;i<10;i++){
 int n=ran.nextInt(11);
 System.out.println(n);
 }
}

4.Random产生1-10之间的随机数

public static void main(String[] args) {
Random ran =new Random();
for(int i=0;i<10;i++){
int n=ran.nextInt(10)+1;
System.out.println(n);
}
}

最后

以上就是健壮超短裙为你收集整理的math.random与Random产生随机数的方法的全部内容,希望文章能够帮你解决math.random与Random产生随机数的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部