Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
323588 | 沈能 | [在线测评解答教程] 闰年 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 239 | 2025-05-18 14:36:51 |
#include<bits/stdc++.h> using namespace std; int main(){ int t,n; scanf("%d",&t); while(t--){ scanf("%d",&n); if((n%4==0&&n%100!=0)||(n%400==0&&n%100==0))printf("YES\n"); else printf("NO\n"): } return 0; }