Console.WriteLine("请输入一个年份!");
int year = Convert.ToInt32(Console.ReadLine());
bool result = LeapYear(year);
if (result)
{
Console.WriteLine("闰年");
}
else
{
Console.WriteLine("不是闰年");
}
Console.ReadKey();
}
public static bool LeapYear(int year)
{
if (year%400 == 0 || year%4==0 && year%100!=0)
{
return true;
}
else
{
return false;
}
}
运行报错,提示错误 “返回值.Program.ReadAnswer()”: 并非所有的代码路径都返回值
|