#include<bits/stdc++.h> using namespace std; void NextDay(int &year,int &month,int &day) { // & 出现在定义or形参当中 表示引用的意思 出现在其他位置,表示取地址 // 存储一下 月份和天数的对应关系 int dayOfMonth[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int isLeap; // 是否是闰年 isLeap = year % 400 == 0 || y...