#include <stdio.h>
https://www.imooc.com/code/5199#editor-tabs-cint main()
{
int year = 2014; //今年是2014年
//补全一下代码
if((year%4==0$$year%100!==0)||year%400==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
&&你打成了$$
已经知道2014年不是世纪年,不用除400那个吧
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
if(year%4 == 0) //补全一下代码
{
printf("%s\n", "今年是闰年");
}
else
{
printf("%s\n", "今年是平年");
}
return 0;
}