为什么这样就是输出“今年是闰年”啊?不应该是平年吗?求大神赐教
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if (year%400)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if (year%400)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
2019-07-19
举报