zoukankan      html  css  js  c++  java
  • C#取整函数Math.Round、Math.Ceiling和Math.Floor

    1.Math.Round:四舍六入五取偶

    引用内容

    Math.Round(0.0) //0
    Math.Round(0.1) //0
    Math.Round(0.2) //0
    Math.Round(0.3) //0
    Math.Round(0.4) //0
    Math.Round(0.5) //0
    Math.Round(0.6) //1
    Math.Round(0.7) //1
    Math.Round(0.8) //1
    Math.Round(0.9) //1
    说明:对于1.5,因要返回偶数,所以结果为2。

    2.Math.Ceiling:只要有小数都加1(也叫天花板函数,在分页算法中计算分页数经常用到)

    引用内容

    Math.Ceiling(0.0) //0
    Math.Ceiling(0.1) //1
    Math.Ceiling(0.2) //1
    Math.Ceiling(0.3) //1
    Math.Ceiling(0.4) //1
    Math.Ceiling(0.5) //1
    Math.Ceiling(0.6) //1
    Math.Ceiling(0.7) //1
    Math.Ceiling(0.8) //1
    Math.Ceiling(0.9) //1
    说明:例如在分页算法中计算分页数很有用。

    3.Math.Floor:总是舍去小数(相对于第2中的天花板函数,这个叫地板函数)

    引用内容

    Math.Floor(0.0) //0
    Math.Floor(0.1) //0
    Math.Floor(0.2) //0
    Math.Floor(0.3) //0
    Math.Floor(0.4) //0
    Math.Floor(0.5) //0
    Math.Floor(0.6) //0
    Math.Floor(0.7) //0
    Math.Floor(0.8) //0
    Math.Floor(0.9) //0
  • 相关阅读:
    LESS的简单介绍
    实例化对象的过程
    原生的AJAX
    http基础
    display的属性值测试
    js中arguments的简单用法
    JS数组控制台排序
    js中使用switch的语法结构和意义
    js入门—控制台输出console.log
    css入门—position详解
  • 原文地址:https://www.cnblogs.com/Teacher-Lu/p/11672633.html
Copyright © 2011-2022 走看看