close
看完閏年的歷史就會知道怎麼下判斷
public static void Main()
{
while(true)
{
int year = 0;
Console.WriteLine("請輸入一個年份: ");
year = Convert.ToInt32(Console.ReadLine());
//if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0))
if ( (year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
{
Console.WriteLine(year + "是潤年");
}
else
{
Console.WriteLine(year + "不是潤年");
}
}
}
文章標籤
全站熱搜
留言列表