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