标签:style blog color sp java div log bs as
Math.random()是java内置产生随机数的函数,Math.random()能够产生[0,1)的浮点数,当我们要产生特定范围的数时,可以采用如下办法:
1.Math.random()*(最大数-最小数+1)+最小数
Math.random()*(a)产生[0-a)的随机数
如要产生[5-15]的随机数:
int a =(int)(Math.random()*(15-5+1)+5)
注意随机数的括号,不要写成:
int a =(int)Math.random()*(15-5+1)+5
这样的话会先将Math.random()专程int类型,就是”0“,的到得随机数永远都不会变;
2.random的nextInt()函数
random.nextInt(a)产生[0-a)的随机数
如要产生[5-15]的随机数:
Random a = new Random(); int i=a.nextInt(11)+5
标签:style blog color sp java div log bs as
原文地址:http://www.cnblogs.com/mouseIT/p/4164303.html