C#課後練習題(一)
阿新 • • 發佈:2019-01-07
數字的分離
編寫一個程式,輸入一個整數,將其各位數字顛倒順序後輸出。
程式碼:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string s = Console.ReadLine(); int n = int.Parse(s); while (n!=0) { Console.Write(n%10+“ ”); n /= 10; } Console.ReadKey(); } } }
執行結果:
125
5 2 1