js Math [ 随机数绝对值四舍五入进一取整舍去取整最大值最小值圆周率 ]

Posted 北野

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 [ 随机数绝对值四舍五入进一取整舍去取整最大值最小值圆周率 ]的主要内容,如果未能解决你的问题,请参考以下文章

JS内置对象使用

JS知识整理随笔 Math和Date对象

js Math方法

js Math方法

0151 Math对象:randomroundfloorceilabsmaxmin随机整数案例

Math 对象