z这个有错吗????
#include <stdio.h>
int main()
{
char x ;
scanf("%d",x);
if( x % 4 == 0)
{ printf("%s\n","是闰年");
}
else
{ printf("%s\n","不是闰年");
}
return 0;
}
#include <stdio.h>
int main()
{
char x ;
scanf("%d",x);
if( x % 4 == 0)
{ printf("%s\n","是闰年");
}
else
{ printf("%s\n","不是闰年");
}
return 0;
}
2015-04-26
举报