C#| 使用String.Format()方法将小数点后的数字四舍五入
生活随笔
收集整理的這篇文章主要介紹了
C#| 使用String.Format()方法将小数点后的数字四舍五入
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
To round the digits after the decimal point, we can use String.Format() method, here is the example.
為了將小數點后的數字四舍五入,我們可以使用String.Format()方法,這里是示例。
using System;namespace ConsoleApplication1 {class Program{static void Main(string[] args){//Only two decimal pointsConsole.WriteLine("Two digits after decimal point");Console.WriteLine(String.Format("{0:0.00}", 512.4246)); Console.WriteLine(String.Format("{0:0.00}", 512.4)); Console.WriteLine(String.Format("{0:0.00}", 512.0));Console.WriteLine("\n\nThree digits after decimal point");Console.WriteLine(String.Format("{0:0.000}", 512.4246));Console.WriteLine(String.Format("{0:0.000}", 512.4));Console.WriteLine(String.Format("{0:0.000}", 512.0));Console.WriteLine(); }} }Output
輸出量
Two digits after decimal point 512.42 512.40 512.00Three digits after decimal point 512.425 512.400 512.000翻譯自: https://www.includehelp.com/dot-net/rounding-digits-after-decimal-point-using-string-format-method.aspx
總結
以上是生活随笔為你收集整理的C#| 使用String.Format()方法将小数点后的数字四舍五入的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python整数转换字符串_使用Pyth
- 下一篇: 取地址符和解引用符的区别_(&)和解引用