跟答案一样的代码还错了?
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if((2014%4 == 0 && 2014%100 !=0)||2014%400==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
这哪里错了??求解答
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
//补全一下代码
if((2014%4 == 0 && 2014%100 !=0)||2014%400==0)
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
这哪里错了??求解答
2019-10-01
举报