答案仅供参考

austin2010 2023-01-13 19:32:46 4 返回题目

#include <bits/stdc++.h>

using namespace std;

int main() {

int n;

cin >> n;

if (n % 4 == 0) {

    if (n % 100 == 0 && n % 400 != 0) {

        cout << "no";

    } else {

        cout << "yes";

    }

} else {

    cout << "no";

}

return 0;

}

{{ vote && vote.total.up }}