1、
Math.Round(0.333333,2); //按照四舍五入的國際標(biāo)準(zhǔn)
double dbdata=0.335333;
string str1=String.Format("{0:F}",dbdata);//默認(rèn)為保留兩位
float i=0.333333;
int j=(int)(i * 100);
i = j/100;
decimal.Round(decimal.Parse("0.3333333"),2)
private System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();
float test=0.333333f;
nfi.NumberDecimalDigits=2;
string result=test.ToString("N", nfi);
string result= String.Format("{0:N2}",Convert.ToDecimal("0.333333").ToString());
Math.Round(0.333333,2); //按照四舍五入的國際標(biāo)準(zhǔn)2、
double dbdata=0.335333;
string str1=String.Format("{0:F}",dbdata);//默認(rèn)為保留兩位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());
浙公網(wǎng)安備 33010602011771號