#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year%==0)
printf("今年是闰年");
}
else
printf("今年是平年");
return 0;
知道了
把分号改过来还是不对