用C描述2018年是平年 用if-else的语句描述
{
int year = 2018;
if((year%4 == 1&&year%100 != 1)||year%400 == 1)
printf("今年是闰年);
}
else
printf("今年是平年");
return 0;