C#取整函数Math.Round、Math.Ceiling和Math.Floor

时间:2019-10-14
本文章向大家介绍C#取整函数Math.Round、Math.Ceiling和Math.Floor,主要包括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

原文地址:https://www.cnblogs.com/Teacher-Lu/p/11672633.html