inclube<stdio.h> int main() { int year =2014 if(year %4 ==0 && year %100 !=0 ||year %400 ==0) { printf("今年是闰年"); } else { printf("今年是平年"); } return 0 }
inclube<stdio.h> include<stdio.h>
4. int year =2014 int year = 2014;
13. return 0 return0;
刚学 不是很懂-.-?
include错了 最后一行return没有分号
#include <stdio.h>
return 0;
应该是空格问题,我这个也过不去