#include<iostream> using namespace std; class Date { public: // 获取某年某月的天数 int GetMonthDay(int year, int month); int Getday(Date&t);//获取当前的所有天数 void prin() { cout << _year << "-"; if (_month < 10) { cout << "0" << _month << "-"; } else { cout << _month <...