美文网首页
Math.round()什么作用?

Math.round()什么作用?

作者: yujiawei007 | 来源:发表于2017-09-05 23:49 被阅读0次

    题目大概是问Math.Round(11.5);和Math.Round(-11.5);返回值是多少?
    原来不是四舍五入这么简单,其实是四舍六入,但是五是很有讲究的。要是遇到五则取离前一位最近的偶数。比如,这条题目,11.5返回值就是12.0;-11.5返回值就是-11.0;
    但是这里其实也不是这么简单:
    看下面的例子:Math.Round(3.44, 1); //Returns 3.4.Math.Round(3.45, 1); //Returns 3.4.Math.Round(3.46, 1); //Returns 3.5.
    依照他的例子得到的是"五舍六入",我改变了一下数字得到的结果将完全改变。

    Math.Round(3.445, 1); //Returns 3.4.
    Math.Round(3.455, 1); //Returns 3.5.
    Math.Round(3.465, 1); //Returns 3.5.

    Math.Round(3.450, 1); //Returns 3.4.(补0是无效的)

    Math.Round(3.4452, 2); //Returns 3.45.
    Math.Round(3.4552, 2); //Returns 3.46.
    Math.Round(3.4652, 2); //Returns 3.47.


    Math.Round(3.44, 1) = 3.4
    Math.Round(3.45, 1) = 3.4
    Math.Round(3.46, 1) = 3.5


    Math.Round(3.54, 1) = 3.5
    Math.Round(3.55, 1) = 3.6
    Math.Round(3.56, 1) = 3.6


    Math.Round(3.64, 1) = 3.6
    Math.Round(3.65, 1) = 3.6
    Math.Round(3.66, 1) = 3.7


    Math.Round(3.74, 1) = 3.7
    Math.Round(3.75, 1) = 3.8
    Math.Round(3.76, 1) = 3.8
    这种舍入方法叫做银行家舍入(Banker'sRound),这就是已经规定下来的标准、Round的标准、世界的标准。
    这里,其实是根据方法的行为遵循 IEEE 标准 754 的第 4 节。这种舍入有时称为就近舍入或银行家舍入;
    总结的口诀是:四舍六入五考虑,五后非零就进一,五后皆零看奇偶,五前为偶应舍去,五前为奇要进一!
    按照这样的口诀去做确实能验证以上的返回结果!

    相关文章

      网友评论

          本文标题:Math.round()什么作用?

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