摘要:
#include #include using namespace std;
int days[][2]={ 0,0, 31,31, 28,29, 31,31, 30,30, 31,31, 30,30, 31,31, 31,31, 30,30, 31,31, 30,30, 31,31 };
int isRun(int year){ if(year%4 ==0 && year%100!=0 || year%400 ==0) return 1; else return 0;
} struct Date{ int year; int month... 阅读全文
posted @ 2013-06-08 17:29
WuhaYaoShenmeAi
阅读(83)
评论(0)
推荐(0)
浙公网安备 33010602011771号