// 这道题要注意的地方比较多,虽然不难但是真的很难受 #include <iostream> #include <string> using namespace std; // 果然忘记一个很重要的事情 int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; bool is_leap(int y) { if (y%100 == 0) { if (y %400) return true; return false; } if (y%4==0) return true; return false; } bool ch...