Math.random()随机数
Posted cuizhufeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.random()随机数相关的知识,希望对你有一定的参考价值。
可以通过 Math.random()获取一个[0,1)的double型随机数;
int s=(int) (Math.random()*50);//生成一个0~50的随机整数 int k=(int) (100-(Math.random()*50));//生成一个50~100的随机整数
System.out.println(k);
System.out.println(s);
注意:千万不要写成 “ (int)Math.random()*100 ” 括号一定要括上否则结果为0.
以上是关于Math.random()随机数的主要内容,如果未能解决你的问题,请参考以下文章