while (true)
{
Console.Write("请输入一个年份:");
int rn =Convert .ToInt32 ( Console.ReadLine()); //输入一个年份
//string s = "";
try
//尝试,保护起来,使程序出错也能执行
{
DateTime rn1 = Convert.ToDateTime(rn + "-2-29");//从电脑自动获取正确时间
Console.WriteLine(rn + "年是闰年");
}
catch (Exception) //这里捕获错误,有错误才执行
{
//s = "年不是闰年";
Console.WriteLine(rn+"年不是闰年");
}
finally //不管有没有错最后都执行
{
//Console.WriteLine(rn + s);
}
}
Console.ReadLine();