C# 计算百分比

2021-06-18 22:05

阅读:527

标签:小数   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


评论


亲,登录后才可以留言!