摘要: 1 #include 2 #include 3 int m2 = 29; 4 int judge_year(int x) 5 { 6 7 if(x % 400 == 0 || x % 4 == 0 && x % 100 != 0) 8 return 1; 9 else 10 return 0; 11 12 } 13 14 //extern int m2; 15 int calculate_year(int *x, int y) 16 { 17 18 /... 阅读全文
posted @ 2013-08-02 15:11 心中的阿哲 阅读(529) 评论(0) 推荐(0) 编辑