immxzmxz
2015-11-12 16:09
#include
int main() { int year = 2014; //今年是2014年 if(2014%4 == 0) //补全一下代码 { printf("%s\n" , "今年是闰年"); } else { printf("%s\n" , "今年是平年"); } return 0; } 怎么不行啊,郁闷#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year % 4 == 0 && year % 100 != 0 || year % 100 == 0 && year % 400 == 0)
{
printf("今年是闰年");
}
else
{
printf("今年是平年");
}
return 0;
}
你好像没有理解题目的意思
C语言入门
926026 学习 · 20793 问题
相似问题