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

浮点数保留两位小数的方法

时间:2015-01-27 00:29:10      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

// 计算实际节拍时间,本班运行时间×60÷实际产量

                double d运行时间 = double.Parse( this.textBox49.Text);

                double d实际产量 = double.Parse(this.textBox4.Text);

                if (d实际产量 > 0)
                {
                    d运行时间 = d运行时间 * 60 / d实际产量;
                    this.textBox7.Text = d运行时间.ToString("N2");
                }

 

浮点数保留两位小数的方法

标签:

原文地址:http://www.cnblogs.com/qqhfeng/p/4251565.html

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