感谢感谢啦
include<stdio.h>
main()
int year=2014;
if(2014%4==0&&2014%100!=0)||(2014%400==0)
{
printf("%s\n","今年是闰年");
}
else
printf("%s\n","今年是平年");
return 0;
第6行
year%100!=0))这个地方有错
year%100!=0)这样就行了,后面的右括号是多余的
多了个右括号