C#double转化成百分比字符串

double temp=3.1415926;

(P)Percent:string str2=temp.toString(“P”);//保留 结果:314.16%

(F)Fixed point:string str1=temp.toString(“f1”);//保留一位小数 四舍五入 结果:3.1

(F)Fixed point:string str2=temp.toString(“f2”);//保留两位小数,四舍五入 下面一次类推 结果:3.14

(N)Number:string str2=temp.toString(“N”);//保留 结果:3.14

(G)General (default):string str2=temp.toString(“G”);//保留 结果:3.1415926

(E)Scientific:string str2=temp.toString(“E”);//保留 结果E:3.141593E+000

(C)Currency:string str2=temp.toString(“C”);//保留 结果:¥3.14

对于double temp=0.000000926的情况,上述方法都不管用,可以通过转成decimal格式再显示。如下所示:
string str = ((decimal)temp).toString();

保留数位小数点的另一种方法:
Double a = 2.1234567;
Math.Round(a,2);//保存2位小数点

猜你喜欢

转载自blog.csdn.net/kucoffee12/article/details/81478105