程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> asp.net小數點四捨五入的方法

asp.net小數點四捨五入的方法

編輯:關於ASP.NET

1.只要求保留N位不四捨5入

float f = 0.55555f;int i =(int)(f * 100);f = (float)(i*1.0)/100;

2.保留N位,四捨五入 .

decimal d= decimal.Round(decimal.Parse("0.55555"),2);

3.保留N位四捨五入

Math.Round(0.55555,2)

4,保留N位四捨五入

double dbdata = 0.55555;string str1 = dbdata.ToString("f2");//fN 保留N位,四捨五入

5.保留N位四捨五入

string result = String.Format("{0:N2}", 0.55555);//2位

string result = String.Format("{0:N3}", 0.55555);//3位

6. 保留N位四捨五入

double s=0.55555;result=s.ToString("#0.00");//點後面幾個0就保留幾位

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved