慕婉清6553529
2019-09-05 23:14
#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;
}
语句printf("%s\n","今年是闰年")和 语句printf("%s\n","今年是平年")后的分号改成半角。
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year%4==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s","今年是平年");
}
return 0;
C语言入门
926020 学习 · 20793 问题
相似问题