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:总是舍去小数

    引用内容
    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
  • 相关阅读:
    python 网络客户端编程端口,模块
    Python反转
    ASP.NET的路由系统
    yield 关键字
    C# Lock关键字
    C#中as和is关键字
    13.4 上下文对象
    请求生命周期
    ASP.NET常用的指令
    ASP.NET Page 指令
  • 原文地址:https://www.cnblogs.com/wwzhang/p/4112997.html
Copyright © 2011-2022 走看看