您好,登錄后才能下訂單哦!
這篇“C#四舍五入MidpointRounding.AwayFromZero怎么使用”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C#四舍五入MidpointRounding.AwayFromZero怎么使用”文章吧。
四舍五入 在計算中 經(jīng)常使用到,但是如果使用 Math.Round,只是五舍六入
在Math.Round內(nèi)傳入MidpointRounding.AwayFromZero枚舉,就可以實現(xiàn)四舍五入的效果了,
Debug.Log($"四舍五入{66.6}。。。{(int)Math.Round(66.6, MidpointRounding.AwayFromZero)}"); Debug.Log($"四舍五入{66.5}。。。{(int)Math.Round(66.5, MidpointRounding.AwayFromZero)}"); Debug.Log($"四舍五入{66.4}。。。{(int)Math.Round(66.4, MidpointRounding.AwayFromZero)}"); Debug.Log($"四舍五入{66.6}。。。{(int)Math.Round(66.6)}"); Debug.Log($"四舍五入{66.5}。。。{(int)Math.Round(66.5)}"); Debug.Log($"四舍五入{66.4}。。。{(int)Math.Round(66.4)}");
C#中的Math.Round()并不是使用的"四舍五入"法。
其實C#的Round函數(shù)都是采用Banker’s rounding(銀行家算法),即:四舍六入五取偶
Math.Round(0.4) //result:0 Math.Round(0.6) //result:1 Math.Round(0.5) //result:0 Math.Round(1.5) //result:2 Math.Round(2.5) //result:2
使用MidpointRounding.AwayFromZero的效果:
Math.Round(0.4, MidpointRounding.AwayFromZero); // result:0 Math.Round(0.6, MidpointRounding.AwayFromZero); // result:1 Math.Round(0.5, MidpointRounding.AwayFromZero); // result:1 Math.Round(1.5, MidpointRounding.AwayFromZero); // result:2 Math.Round(2.5, MidpointRounding.AwayFromZero); // result:3
保留后倆位小數(shù)點(diǎn)要用到另一個重載方法
Math.Round((decimal)22.325, 2,MidpointRounding.AwayFromZero)//result : 22.33
Math.Round(0.333, 2);//按照四舍五入的國際標(biāo)準(zhǔn) double dbdata = 0.335; string str1 = String.Format("{0:F}", dbdata);//默認(rèn)為保留兩位 decimal.Round(decimal.Parse("0.3453"), 2) Convert.ToDecimal("0.3333").ToString("0.00");
String.Format("{0:N1}", a) 保留小數(shù)點(diǎn)后一位 String.Format("{0:N2}", a) 保留小數(shù)點(diǎn)后兩位 String.Format("{0:N3}", a) 保留小數(shù)點(diǎn)后三位
double s=0.55555; result=s.ToString("#0.00");//點(diǎn)后面幾個0就保留幾位
double dbdata = 0.55555; string str1 = dbdata.ToString("f2");//fN 保留N位,四舍五入
以上就是關(guān)于“C#四舍五入MidpointRounding.AwayFromZero怎么使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。