为甚么我编辑的与源代码一样却不能运行
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if ((year%4 == 0 && year%100 != 0) || year%400 == 0)
{
printf("%s\n","今年是平年");
}
else
{
printf("%s\n","今年是闰年");
}
return 0;
}
为什么源代码第一条输出是:今年是闰年。而我的第一条输出是平年?
2016-09-27
举报