题解
2023-04-01 17:24:12
发布于:上海
103阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main() {
int n;
cin >> n;
if ((n % 4 == 0 && n % 100 != 0) || n % 400 == 0) {
cout << "Y" << endl;
}
else {
cout << "N" << endl;
}
return 0;
}
全部评论 1
我爱你
2024-10-20 来自 浙江
0
有帮助,赞一个