C#第三週上機實驗(二)判斷是否潤年
阿新 • • 發佈:2019-02-15
實驗要求:輸入一個年份,判斷是否潤年(被4整除,且不被100整除,或者被400整除)
原始碼:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1dishizhou1 { class Program { static void Main(string[] args) { Console.Write("請輸入一個年份:"); string str = Console.ReadLine(); int n = int.Parse(str); if (n % 4 == 0 && n % 100 != 0 || n % 400 == 0) { Console.WriteLine(n + "是閏年"); } else { Console.WriteLine(n + "不是閏年"); } Console.ReadLine(); } } }
輸出結果:
總結:Console.ReadLine();此語句用於用於停留介面;