1、Math.Round(0.333333,2);//按照四舍五入的国际标准
2、
double dbdata=0.335333;
string str1=String.Format("{0:F}",dbdata);//默认为保留两位
3、
float i=0.333333;
int j=(int)(i * 100);
i = j/100;
4、
decimal.Round(decimal.Parse("0.3333333"),2)
5、
private System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo(); float test=0.333333f;
nfi.NumberDecimalDigits=2;
string result=test.ToString("N", nfi);
6、
string result= String.Format("{0:N2}",Convert.ToDecimal("0.333333").ToString()); (转载)
相关文章
- 04-11C# 32位程序,申请大内存,附dome(wpf),亲测可用
- 04-11Internal.Cryptography.CryptoThrowHelper+WindowsCryptographicException 拒绝访问 / 出现了内部错误 c# – 当使用X509Ce
- 04-11算数运算符: + - * / //(地板除) %(取余) **(幂运算) / 比较运算符 > < >= <= == !=
- 04-1130行代码爬取英雄联盟全英雄皮肤
- 04-11【POJ】1067 取石子游戏(博弈论)
- 04-11算概率(取模处理dp)
- 04-111353: 整存零取(C语言)
- 04-11codevs1281 矩阵乘法 快速幂 !!!手写乘法取模!!! 练习struct的构造函数和成员函数
- 04-11Linkedinfo 文章爬取
- 04-11Bash 脚本 getopts为什么最后一个參数取不到