Math.Ceiling();向上取整
Math.Ceiling()向上取整; d = 4.56789 string res = Math.Ceiling(Convert.ToDecimal(d)).ToString(); res=5
Math.Floor()向下取整 ;string res = Math.Floor(Convert.ToDouble(d)).ToString(); es=4
Math.Round是"就近舍入",当要舍入的是5时与"四舍五入"不同(取偶数),如:
Math.Round(0.5,0)=0
floor 和 ceiling是math unit 里的函数,使用前要先 Uses Math。
trunc 和 round 是system unit 里的函数,缺省就可以用。
floor 直接往小的取,比如 floor(-123.55)=-124,floor(123.55)=123
trunc 直接切下整数,比如 trunc(-123.55)=-123, floor(123.55)=123
ceil 直接往大的取,比如 ceil(-123.55)=-123, ceil(123.55)=124
round 计算四舍五入,比如 round(-123.55)=-124,round(123.55)=124
double t = 3.0 / 2.0;
Console.WriteLine(t);
t=Math.Ceiling(t);
Console.Write(t);
你比较下看看
不过必须要这样写
t = 3.0 / 2.0;//或者你用t = 3f / 2f
要是不要.0的话,会有点问题,就是3/2返回的是整数,然后再转为double类型
而且Math.Ceiling返回的还是一个double类型的数字,但是没有小数位(说实在就是一个整数)
Math.Ceiling()方法
返回大于或等于指定数字的最小整数
Math.Round(x,0)
x为想要约的数
Math.Ceiling(i);