如何将小数向上舍入到最接近的整数。



1.2 ---> 2
5.6 ---> 6
79.9 ---> 80
85.01 ---> 86


(int)Math.Round(计数/(十进制)行,MidpointRounding.AwayFromZero)

最佳答案

Math.Ceiling是你的朋友

关于c# - 使用C#舍入到以上单位,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2274885/

10-11 12:24