完全看不出来哪里错了 求指导
if (year%4==0&&year%100!=0||year%400==0)
{
printf("%s\n","今年是闰年");
}
else
printf("%s\n","今年是平年");