c# 前导0_C#| 用前导零填充整数
生活随笔
收集整理的這篇文章主要介紹了
c# 前导0_C#| 用前导零填充整数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
c# 前導0
To pad an integer number with leading zero, we can use String.Format() method which is library method of String class in C#.
要用前導零填充整數,我們可以使用String.Format()方法,該方法是C#中String類的庫方法。
using System;namespace ConsoleApplication1 {class Program{static void Main(string[] args){Console.WriteLine("Demo for pad zeros before an integer number:");Console.WriteLine(String.Format("{0:000000}", 256));Console.WriteLine(String.Format("{0:000000}", -256)); Console.WriteLine(); }} }Output
輸出量
Demo for pad zeros before an integer number: 000256 -000256In the above program, we are printing 256 and -256 numbers in 6 digits, as we know that 256 has 3 digits and we are padding (left/leading) them with zeros.
在上面的程序中,我們以6位數字打印256和-256數字,因為我們知道256有3位數字,并且用零填充(左/前)。
翻譯自: https://www.includehelp.com/dot-net/padding-an-integer-number-with-leading-zeros-in-csharp.aspx
c# 前導0
總結
以上是生活随笔為你收集整理的c# 前导0_C#| 用前导零填充整数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 合肥治疗男人精子活力低最好的医院推荐
- 下一篇: c#委托调用另一窗口函数_在C#中使用委