Math.random()是产生[0.0-1.0)之间的随机小数。
举一反三
- Math.random(),生成[0,1)之间的一个随机小数
- Math.random方法返回0.0和1.0之间的double类型的随机数,包括0.0但不包括1.0。
- random库的seed(a)函数的作用是 A: 生成一个随机整数 B: 生成一个a比特长度的随机整数 C: 生成一个[0.0, 1.0)之间的随机小数 D: 设置初始化随机数种子
- 关于random库描述错误的是( )。 A: andint(a, b)生成一个[a, b]之间的整数 B: andom()生成一个[0.0, 1.0]之间的随机小数 C: getrandbits(k)生成一个k 比特长度的随机整数 D: seed(a)初始化随机种子
- Math static method random generates a random double value in the range from 0.0 ( ) A: up to but not including 1.0 B: up to and including 100.0 C: up to but not including 100.0 D: up to and including 1.0