Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51315 | zhangsicun | [在线测评解答教程] 闰年 | C++ | 编译错误 | 0 MS | 0 KB | 251 | 2024-09-20 19:51:34 |
#include <stdio.h> int main(){ int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); if((n%4==0&&n%100!=0)|| (n%400==0)){ cout<<"Yes"<<endl; } else{ cout<<"No"<<endl; } } return 0; }