| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154147 | 鸡哥 | 08判断是否为闰年 | C++ | Wrong Answer | 1 MS | 268 KB | 237 | 2026-05-24 15:34:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a % 400 == 0){ cout<<"yes"; }else{ if(a % 100 != 0 and a % 4 == 0){ cout<<"yes"; }else{ cout<<"no"; } } }
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
yes