#include <iostream> using namespace std; //获取每个月的天数 static int Getmonth(int year, int month, int day) { static int GetMonth[13] = { -1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; //判断是不是闰年 if ((month == 2) && ((year % 400 == 0) || ((year % 100 != 0 && year ...