为什么这样子是错的呢????????
#include<stido.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if (year%4!=0)
{
printf("今年是平年%s\n");
}
else
{
printf("今年是闰年%s\n");
}
return 0;
}
#include<stido.h>换成 #include<stadio.h>
printf("今年是平年%s\n");换成("%s\n","今年是平年");
printf("今年是闰年%s\n");换成("%s\n","今年是闰年");
if (year%4!=0) 还有这个地方 应该是== 吧 = 是赋值吧
为什么要加"%s\n", 不写这个也能输出今年是平年耶