#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if((year%4==0&&year%100!=0)||year%400==0);
{
printf("%s\n","今年是闰年");
}
else
{
printfO("%s\n","今年是平年");
}
return 0;
}
首先你的if条件有点复杂,其次,你的if()后面带了“;”,最后,第二个printf后面O是什么东西?
那个o是不小心打上去的,现在改完了,感谢
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
if(year%4 ==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}