Console.WriteLine("請(qǐng)輸入一個(gè)年份");
int year = Convert.ToInt32(Console.ReadLine());
?bool b = (year % 400==0)||(year % 4 == 0 && year % 100!=0);
Console .WriteLine (b);
Console .ReadKey ();
Console.WriteLine("請(qǐng)輸入一個(gè)年份");
int year = Convert.ToInt32(Console.ReadLine());
?bool b = (year % 400==0)||(year % 4 == 0 && year % 100!=0);
Console .WriteLine (b);
Console .ReadKey ();