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

C#double转化成字符串 保留小数位数

时间:2018-05-25 01:36:44      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:str   转化   结果   poi   default   point   general   str1   ring   

double temp=3.1415926;

(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

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

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

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

C#double转化成字符串 保留小数位数

标签:str   转化   结果   poi   default   point   general   str1   ring   

原文地址:https://www.cnblogs.com/czicy/p/9085923.html

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