#include <iostream> using namespace std; #include <assert.h> class Date { public: Date(int year = 1, int month = 1, int day = 1) { _year = year; _month = month; _day = day; } int GetMonthDay(int year, int month)//获得某年某月的具体天数 { static int daysArr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30...