Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
28678 | 闻航 | [在线测评解答教程] 闰年 | C++ | 解答错误 | 1 MS | 244 KB | 235 | 2023-10-19 15:13:00 |
#include <iostream> using namespace std; int main() { int t, year; cin >> t; while (t > 0) { cin >> year; if (year % 4) cout << "No" << endl; else cout << "Yes" << endl; t--; } }