救命!!有问题,这一处错误看不懂!
#include <stdio.h>
int main()
{
int year=2014;
if(year%4==0&&year%100!==0||year%400==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
error: expected expression before '=' token