小题解
2023-08-01 18:01:53
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int check(int a){
if(a%4==0&&a%100!=0||a%400==0){
return true;
}
else{
return false;
}
}
int main(){
int n;
cin>>n;
if(check(n)){
cout<<"Y"<<endl;
}
else{
cout<<"N"<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个