其他分享
首页 > 其他分享> > 数学函数

数学函数

作者:互联网

圆周率 Math.PI
向下取整 Math.floor(数字),获取小于该数字的最大整数
向上取整 Math.ceil(数字),获取大于该数字的最小值整数
四舍五入 Math.around
幂(平方、立方) Math.pow(a,b)a的b次方或者
a**b a的b次方
随机数 Math.random(),生成值的范围0-1之间的小数,可以无限接近于0,也可以无限接近于1
随机数用途:
生成唯一的字符串
生成随机整数

生成0-5之间的随机整数
Math.random()*5 范围是0.?-4.?
Math.floor(Math.random()*6) 范围是0-5

生成10-20之间的随机整数
1、Math.floor(Math.random()*?) 最小值是0
2、Math.floor(Math.random()*?)+10 最小值是10
3、因为最大值是20,所以Math.floor(Math.random()*?)不能超过10
4、所以随机小数应该*11
5、结果Math.floor(Math.random()*11)+10

//35-220之间的随机整数
Math.floor(Math.random()*186)+35

//a-b之间的随机数 0-100
Math.floor(Math.random()*(b-a+1))+a
*/

标签:10,函数,floor,random,整数,数学,随机,Math
来源: https://www.cnblogs.com/433243m/p/16398015.html