| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 368931 | 许安哲 | [在线测评解答教程] 闰年 | C++ | Wrong Answer | 0 | 1 MS | 184 KB | 176 | 2025-12-18 16:45:24 |
#include <stdio.h> int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); //在这里写判断 n 是否为闰年的代码及输出结果 } return 0; }