摘要: #include int judge_year(int year){ if(year % 400 == 0 || year % 4 == 0 && year % 100 != 0) return 1; else return 0; }int total_days( int year, int month, int day ){ int i, sum = 0; for(i = 1; i year2) { ... 阅读全文
posted @ 2013-07-31 10:49 心中的阿哲 阅读(166) 评论(0) 推荐(0) 编辑