关于C#里的取整问题,有向上和向下两种取整方式 [1]向上取整 a=1.2345 string res = Math.Ceiling(Convert.ToDecimal(a)).ToString(); string res = Math.Ceiling(Convert.ToDouble(a)).ToString(); res取整后为2 [2]向下取整 string res = Math.Floor(Convert.ToDecimal(a)).ToString(); string res = Math.Floor(Convert.ToDouble(a)).ToString(); res取整后为1 |
欢迎光临 度量快速开发平台-专业、快速的软件定制快开平台 (http://plat.delit.cn/) | Powered by Discuz! X3.2 |