#include <iostream> using namespace std; int main() { //创建一个包含每个月一般有多少天的数组 static int Monthdays[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31,30, 31}; int year, month, day, n = 0; //在oj题中后台会有多组测试用例 //所以外面这里最好是用while形成多组输入 //这样可以不断接收输入,直到按crtl+c就结束 while ( cin &...