這篇文章主要介紹“C#保留小數(shù)位數(shù)實(shí)例”,在日常操作中,相信很多人在C#保留小數(shù)位數(shù)實(shí)例問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C#保留小數(shù)位數(shù)實(shí)例”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

創(chuàng)新互聯(lián)專注于企業(yè)營銷型網(wǎng)站、網(wǎng)站重做改版、敦化網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、商城網(wǎng)站定制開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為敦化等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
1.簡(jiǎn)單的例子
System.Globalization.NumberFormatInfo provider = new System.Globalization.NumberFormatInfo(); provider.NumberDecimalDigits =intDecLength; //要設(shè)定的小數(shù)位數(shù) double strCashAmt=Convert.ToDouble(this.txtCashAmt.Text); //先把控件內(nèi)的值轉(zhuǎn)成double this.txtCashAmt.Text = strCashAmt.ToString("N",provider); //再利用ToString函數(shù)格式化小數(shù)位數(shù)2.C#保留小數(shù)位N位,四舍五入 .
decimal d= decimal.Round(decimal.Parse("0.55555"),2);3.C#保留小數(shù)位N位四舍五入
Math.Round(0.55555,2)
Math.Round(0.55555,2)
4,C#保留小數(shù)位N位四舍五入
double dbdata = 0.55555; string str1 = dbdata.ToString("f2");//fN 保留N位,四舍五入5.C#保留小數(shù)位N位四舍五入
string result = String.Format("{0:N2}", 0.55555);//2位 string result = String.Format("{0:N3}", 0.55555);//3位6. C#保留小數(shù)位N位四舍五入
double s=0.55555; result=s.ToString("#0.00");//點(diǎn)后面幾個(gè)0就保留幾位C#保留小數(shù)位數(shù),及百分號(hào)的解決方法:
1、用NumberFormatInfo類來解決:
System.Globalization.NumberFormatInfo provider = new System.Globalization.NumberFormatInfo(); provider.PercentDecimalDigits = 2;//小數(shù)點(diǎn)保留幾位數(shù). provider.PercentPositivePattern = 2;//百分號(hào)出現(xiàn)在何處. double result = (double)1 / 3;//一定要用double類型. Response.Write(result.ToString("P", provider));2、用toString方法.:
public string getRate(double hcount, double task) { string rValue; string temp = ""; if (task == 0) { task = 1; } double db = (hcount / task) * 100; if (hcount >= task) { rValue = "100%"; } else { rValue = db.ToString("#0.#0") + "%"; } return rValue; } string str1 = String.Format("{0:N1}",56789); //result: 56,789.0 string str2 = String.Format("{0:N2}",56789); //result: 56,789.00 string str3 = String.Format("{0:N3}",56789); //result: 56,789.000 string str8 = String.Format("{0:F1}",56789); //result: 56789.0 string str9 = String.Format("{0:F2}",56789); //result: 56789.00 string str11 =(56789 / 100.0).ToString("#.##"); //result: 567.89 string str12 =(56789 / 100).ToString("#.##"); //result: 567到此,關(guān)于“C#保留小數(shù)位數(shù)實(shí)例”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
當(dāng)前標(biāo)題:C#保留小數(shù)位數(shù)實(shí)例
轉(zhuǎn)載源于:http://www.chinadenli.net/article12/iphddc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、關(guān)鍵詞優(yōu)化、靜態(tài)網(wǎng)站、網(wǎng)站導(dǎo)航、網(wǎng)站建設(shè)、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)