Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
31397 | chenyanda | [在线测评解答教程] 闰年 | C++ | 通过 | 1 MS | 248 KB | 448 | 2023-11-18 16:20:02 |
#include <iostream> using namespace std; int main() { int t, i, y, year[100]; cin >> t; for (i = t; i > 0; i--) { cin >> year[i]; } while (t) { y = year[t]; if (y % 4 == 0) { if (y % 100 == 0) { if (y % 400 == 0) cout << "Yes" << endl; else cout << "No" << endl; } else cout << "Yes" << endl; } else cout << "No" << endl; t--; } }