C#四舍五入的4种方法
1、使用Math.Round方法处理
double a = 3.1415926;
//使用四色五入保留2位小数
double b = Math.Round(a,3);
Console.WriteLine(b);
//输出:3.142
2、使用 decimal.Round方法处理
double a = 3.1415926;
//使用 decimal.Round
decimal c = decimal.Round(Convert.ToDecimal(a), 3);
Console.WriteLine(c);
//输出3.142
3、使用 Format() 方法处理
double a = 3.1415926;
string str1 = String.Format("{0:N2}", a);//保留2位
string str2 = String.Format("{0:N3}", a);//保留3位
Console.WriteLine(str1);//输出:3.14
Console.WriteLine(str2);//输出:3.142
4、使用 ToString() 方法处理
ouble a = 3.1415926;
string stra = a.ToString("f4");
string strb = a.ToString("#0.000");
Console.WriteLine(stra);//输出:3.1416
Console.WriteLine(strb);//输出:3.142,小数点后有几个0就保留几位
本文来自博客园,作者:码农阿亮,转载请注明原文链接:https://www.cnblogs.com/wml-it/p/16584634.html
技术的发展日新月异,随着时间推移,无法保证本博客所有内容的正确性。如有误导,请大家见谅,欢迎评论区指正!
开源库地址,欢迎点亮:
GitHub:https://github.com/ITMingliang
Gitee: https://gitee.com/mingliang_it
GitLab: https://gitlab.com/ITMingliang
建群声明: 本着技术在于分享,方便大家交流学习的初心,特此建立【编程内功修炼交流群】,为大家答疑解惑。热烈欢迎各位爱交流学习的程序员进群,也希望进群的大佬能不吝分享自己遇到的技术问题和学习心得!进群方式:扫码关注公众号,后台回复【进群】。