random 方法 生成随机数

Posted Yaaaaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random 方法 生成随机数相关的知识,希望对你有一定的参考价值。

 Math.random() 生成 大于等于0.0 且小于 1.0 的double 型随机数

( 0.0 <= Math.random() < 1.0 )  

可以使用它便携简单了表达式,生成任意范围的随机数。

例如:

  (int)(Math.random() * 10)       返回 0   ~   9   之间的一个随机整数

  50 + (int)(Math.random() * 50)   返回 50 ~ 99   之间的一个随机整数

  通常 

  a + Math.random() * b        返回 a   ~ a+b 之间的一个随机整数 ,不包括a+b      。

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

以上是关于random 方法 生成随机数的主要内容,如果未能解决你的问题,请参考以下文章

python用生成随机数的方法

Shell进阶脚本-生成随机数( $RANDOM )

Java中Math.random()与Random类生成随机数及源码分析

详解随机数的生成

python之随机数生成方法汇总

[ Python入门教程 ] Python生成随机数模块(random)使用方法