码迷,mamicode.com
首页 > Windows程序 > 详细

C# 计算百分比

时间:2019-01-21 15:55:41      阅读:470      评论:0      收藏:0      [点我收藏+]

标签:小数   0.00   ima   nbsp   保留   四舍五入   string   math   style   

            //计算比率
            decimal A =(decimal) 200.20; 
            decimal B = (decimal)1000.20; 

            decimal t = decimal.Parse((A/B).ToString("0.000")) ; //保留3位小数
            //
            var  t1 = Math.Round(t, 2);  //四舍五入,精确2位

            var t2 = t1 * 100;  //乘以100     x100结果%

 

      var t3 = Math.Floor(Math.Round(decimal.Parse((0 / 100).ToString("0.000")), 2) * 100);

 

 

C# 计算百分比

标签:小数   0.00   ima   nbsp   保留   四舍五入   string   math   style   

原文地址:https://www.cnblogs.com/enych/p/10298396.html

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