题解孤2024-08-07 13:56:46发布于:浙江0阅读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; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个