萌新求助QAQ,第三测试点WA,不知道哪里错了。。
查看原帖
萌新求助QAQ,第三测试点WA,不知道哪里错了。。
373880
KRISZHANG7楼主2020/9/9 10:13
#include<bits/stdc++.h>

using namespace std;

int main(){
	
	int year,month;
	cin>>year>>month;
	
	
	if((year%4==0)||(year%100==0)&&(year%400!=0)){
		if(month==1||month==3||month==5||month==7||month==8||month==10||month==12){
			cout<<31;
		}else if(month==2){
			cout<<29;
		}else cout<<30;
	}else if(month==1||month==3||month==5||month==7||month==8||month==10||month==12){
		cout<<31;
	}else if(month==2){
		cout<<28;
	}else cout<<30;
	
	return 0;
	
}
2020/9/9 10:13
加载中...