好久没写博客了,最近都在沉淀,所以没有什么新鲜的东西分享,今天就分享用C#求百分比的方法,一般这种东西在做统计时还是经常用到的
废话不多说,直接上代码
public static string ExecPercent(decimal PassCount, decimal allCount)
{
string res = "";
if (allCount > 0)
{
res = ChinaRound((double)Math.Round(PassCount / allCount * 100, 1), 0).ToString() + "%";
}
return res;
}
private static double ChinaRound(double value, int decimals)
{
if (value < 0)
{
return Math.Round(value + 5 / Math.Pow(10, decimals + 1), decimals, MidpointRounding.AwayFromZero);
}
else
{
return Math.Round(value, decimals, MidpointRounding.AwayFromZero);
}
}
调用
StringFormat.ExecPercent((decimal)item.PassCount, (decimal)item.AllCount);
我知道我伸出手你不会跟我走,所以我伸出了腿,你被绊倒后,果然站起来就追着我跑!
于是我发现:往往深情留不住,偏偏套路得人心!
老公睡不着,老婆问他怎么了?
老公说:今天老板请他们喝了咖啡。
老婆说:明晓得喝了咖啡睡不着,干吗还喝?
老公说:不要钱的东西不喝,一样睡不着。