美文网首页
JS获取两个数之间的任意随机数

JS获取两个数之间的任意随机数

作者: HappyforSuzy | 来源:发表于2018-08-31 17:23 被阅读0次

    方法一

    function rd(n,m){  
        var c = m-n+1;    
        return Math.floor(Math.random() * c + n);  
    } 
    

    方法二

    function randomNum(num1,num2){
        return Math.random()*(num2-num1)+num1  
    }
    

    Math.round(),Math.ceil(),Math.floor()的区别

    1.Math.round():根据“round”的字面意思“附近、周围”,可以猜测该函数是求一个附近的整数,看下面几个例子就明白。

    小数点后第一位<5
    正数:Math.round(11.46)=11
    负数:Math.round(-11.46)=-11

    小数点后第一位>5
    正数:Math.round(11.68)=12
    负数:Math.round(-11.68)=-12

    小数点后第一位=5
    正数:Math.round(11.5)=12
    负数:Math.round(-11.5)=-11
    总结:(小数点后第一位)大于五全部加,等于五正数加,小于五全不加。

    2.Math.ceil():根据“ceil”的字面意思“天花板”去理解;
    例如:
    Math.ceil(11.46)=Math.ceil(11.68)=Math.ceil(11.5)=12
    Math.ceil(-11.46)=Math.ceil(-11.68)=Math.ceil(-11.5)=-11

    3.Math.floor():根据“floor”的字面意思“地板”去理解;
    例如:
    Math.ceil(11.46)=Math.ceil(11.68)=Math.ceil(11.5)=11
    Math.ceil(-11.46)=Math.ceil(-11.68)=Math.ceil(-11.5)=-12

    相关文章

      网友评论

          本文标题:JS获取两个数之间的任意随机数

          本文链接:https://www.haomeiwen.com/subject/hvkewftx.html