首页 > 代码库 > js Math [ 随机数、绝对值、四舍五入、进一取整、舍去取整、最大值、最小值、圆周率 ]
js Math [ 随机数、绝对值、四舍五入、进一取整、舍去取整、最大值、最小值、圆周率 ]
<script> /* 数学对象:Math */ with (document) { write(‘<br>-3.5的绝对值:‘+Math.abs(-3.5)); write(‘<br>3.5的四舍五入:‘+Math.round(3.01)); write(‘<br>3.01的进一取整:‘+Math.ceil(3.01)); write(‘<br>3.99的舍去取整:‘+Math.floor(3.99)); write(‘<br>获取最大值:‘+Math.max(10,20,45,12)); write(‘<br>获取最大值:‘+Math.min(10,20,45,12)); write(‘<br>获取圆周率‘+Math.PI); // Math.random():获取的>=0 <1的随机数 write(‘<br>获取随机数‘+Math.random()); /* // 0-10的随机数 Math.round(Math.random()*10); 0-0.5 0 0.5-1.5 1 1.5-2.5 2 9.5-10 10 */ // 0 - 10的随机数 console.log(Math.ceil(Math.random()*100000)%11); // 10-50的随机数 /* 0-40 +10 */ console.log(Math.ceil(Math.random()*100000)%41+10); // m-n的随机数 function getRandom(m, n){ return Math.ceil(Math.random()*100000)%(n-m+1)+m; } console.log(getRandom(2,3)); } </script>
js Math [ 随机数、绝对值、四舍五入、进一取整、舍去取整、最大值、最小值、圆周率 ]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。