Math.random()问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.random()问题相关的知识,希望对你有一定的参考价值。
while((inputx=br.nextLine())!=null)
System.out.print(Math.round(Math.random()*14)+1);
System.out.print((int)Math.random()*14+1);
随机产生一个1-15随机数 为什么第二个打印在循环里不变 打出来的永远是一个随机数 第一个就会变化呢
Math.random() 会返回一个 0-1 之间的随机小数,使用 (int)强制转换的话就等于 0 了,0*14 = 0
所以会一直返回固定值
而 Math.round(Math.random()*14) 中,Math.random()*14 会返回一个 0-14 之间的随机数,然后再进行四舍五入操作,所以也是随机的 参考技术A 第二个修改为:System.out.print((int) (Math.random()*14) + 1);
要先计算Math.random()*14的值再转换为int型数据,强制转换类型的优先级比*要高
Math.random()返回带正号的 double 值,该值大于等于 0.0 且小于 1.0,如果先强制转换类型为int的话,返回为0,那么第二个始终返回为1 参考技术B
在连续整数中取得一个随机数。
在不相邻整数中取得一个随机数。
关于Math类中的random方法:
其实在Math类中也有一个random方法,该random方法的工作是生成一个[0,1.0)区间的随机小数。
通过阅读Math类的源代码可以发现,Math类中的random方法就是直接调用Random类中的nextDouble方法实现的。
只是random方法的调用比较简单,所以很多程序员都习惯使用Math类的random方法来生成随机数字。
Math.random()
Math.random() -----> [0,1)
Math.random()*k -----> [0,k)
(int)(Math.random()*k ) -----> [0,k-1]
(int)(Math.random()*k + a) -----> [a,k-1+a]
所以想要返回:[a,b]范围内的数时;
(int)(Math.random()*(b-a+1) + a)
从1-5随机到1-7随机
public static void main(String[] args)
for (int i = 0; i < 30; i++)
System.out.print(f() + " ");// 返回 [1,7]
System.out.println();
// 返回 [1,7]
for (int i = 0; i < 30; i++)
System.out.print((int)((3*f() - 1.0)/2.0) + " ");
// 返回 [1,5]
public static int f()
return (int)(Math.random()*(5 - 1 + 1)+1);
从a-b随机到c-d随机
01不等概率随机到01等概率随机
以上是关于Math.random()问题的主要内容,如果未能解决你的问题,请参考以下文章