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
  • 相关阅读:
    ExecuteScalar 返回值问题
    c#中怎么用for循环遍历DataTable中的数据
    select多用户之间通信
    python快速学习6
    python快速学习5
    python快速学习4
    python快速学习3
    python快速学习2
    arm处理器
    软链接与硬链接
  • 原文地址:https://www.cnblogs.com/ShaYeBlog/p/6270371.html
Copyright © 2011-2022 走看看