码迷,mamicode.com
首页 > 其他好文 > 详细

Math.Ceiling 只要有小数都加1

时间:2019-05-20 17:09:51      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:double   小数   math   显示   style   mat   write   div   code   

            double result1 = Math.Ceiling(0.3);
            Console.WriteLine(result1);//result1显示1

            double result2 = Math.Ceiling(0.5);
            Console.WriteLine(result2);//result2显示1

            double result3 = Math.Ceiling(0.6);
            Console.WriteLine(result3);//result3显示1         

            Console.Read();        

 

Math.Ceiling 只要有小数都加1

标签:double   小数   math   显示   style   mat   write   div   code   

原文地址:https://www.cnblogs.com/158-186/p/10894743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!