慕粉1255299925
2017-02-21 16:38
今年是2014年编写程序判断今年是闰年还是平年。
请在代码编辑器中使用简单if-else语句补全代码,判断今年是否是闰年。
运行结果: 今年是平年
hello.c
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
return 0;
}
本课
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year%4==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
可以看下面的同学代码
if(year % 4 == 0){
printf("今年是闰年\n");
}
else{
printf("今年是平年\n");
}
C语言入门
926021 学习 · 20793 问题
相似问题