溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#四舍五入MidpointRounding.AwayFromZero怎么使用

發(fā)布時間:2023-05-04 14:51:53 來源:億速云 閱讀:229 作者:iii 欄目:開發(fā)技術(shù)

這篇“C#四舍五入MidpointRounding.AwayFromZero怎么使用”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C#四舍五入MidpointRounding.AwayFromZero怎么使用”文章吧。

    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#四舍五入MidpointRounding.AwayFromZero怎么使用

    C#四舍五入以及保留小數(shù)位的方法

    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

    C#實現(xiàn)保留兩位小數(shù)的方法

    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");

    C#保留小數(shù)點(diǎn)后幾位

    String.Format("{0:N1}", a) 保留小數(shù)點(diǎn)后一位
    String.Format("{0:N2}", a) 保留小數(shù)點(diǎn)后兩位
    String.Format("{0:N3}", a) 保留小數(shù)點(diǎn)后三位

    C#保留小數(shù)位N位四舍五入

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

    C#保留小數(shù)位N位四舍五入

    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è)資訊頻道。

    向AI問一下細(xì)節(jié)

    免責(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)容。

    AI