Math.random()
Posted yangbocsu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()的主要内容,如果未能解决你的问题,请参考以下文章