qq_慕圣9151246
2020-01-16 10:36
#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","今年是闰年"); 中逗号是中文的,不是英文半角符
C语言入门
926025 学习 · 20793 问题
相似问题