提交时间:2023-11-19 20:40:49

运行 ID: 31626

#include<iostream> using namespace std; int main() { int y; cin>>y; if (y % 4 == 0) { if (y % 100 == 0) { if (y % 400 == 0) cout << "Y" << endl; else cout << "N" << endl; } else cout << "Y" << endl; } else cout << "N" << endl; return 0; }