發(fā)布時間:2020-08-08 07:19 作者:獨孤劍 閱讀:3976
static void Main(string[] args) { // 個位數(shù)左邊補充4個0, 00001 Console.WriteLine(string.Format("{0:d5}", 1)); // 十位數(shù)左邊補充3個0, 00010 Console.WriteLine(string.Format("{0:d5}", 10)); // 百位數(shù)左邊補充2個0, 00100 Console.WriteLine(string.Format("{0:d5}", 100)); // 千位數(shù)左邊補充1個0, 01000 Console.WriteLine(string.Format("{0:d5}", 1000)); // 萬位數(shù)不補充 Console.WriteLine(string.Format("{0:d5}", 10000)); }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞