H海
2018-08-25 09:39
#include <stdio.h>
int main()
{
int year = 2014; //今年是2014年
if((year%4 == 0 && year%100 != 0) || year%400 == 0 )
{
printf("%s\n","今年是闰年");
}
else
{
printf("%s\n","今年是平年");
}
return 0;
}
c语言中不能识别中文字符,类似于:() , 。 、 ; “” ‘’ 这种的都不能识别
今年是平年后面的)错了,使用英文括号
C语言入门
926028 学习 · 20793 问题
相似问题