请问哪里错了?各位大佬
#include <stdio.h>
int mian()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year%4==0&&year%100!=0||year%400==0)
{
printf("今年是闰年");
}
else
{
ptintf("今年是平年");
}
return 0;
}
#include <stdio.h>
int mian()
{
int year = 2014; //今年是2014年
//补全一下代码
if(year%4==0&&year%100!=0||year%400==0)
{
printf("今年是闰年");
}
else
{
ptintf("今年是平年");
}
return 0;
}
2018-10-18
举报