慕仰3086540
2019-07-19 13:39
#include <stdio.h>
int main()
{
int year=2014;
if(year%4==0&&year%100!=1||year%400==0)
{
printf("%s\n","是闰年”);
}
else
{
printf("%s\n","是平年”);
}
return 0;
}
printf("%s\n","是闰年”);你%s的参数呢?
C语言入门
926209 学习 · 20797 问题
相似问题