自测得时候换了好多组数据都通过了,怎么会呢? #include<bits/stdc++.h> using namespace std; int m1[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; bool dauh(int a){ if(a%4==0||a%400==0&&a%100!=0) return true; else return false; } int main(){ ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); int ...