Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119580 | 周博涵 | 08判断是否为闰年 | C++ | Wrong Answer | 1 MS | 272 KB | 292 | 2025-05-17 19:12:11 |
#include <iostream> #include <cmath> #include <cstdio> #include <cstring> using namespace std; int main(){ int a,b; cin>>a; if(a%100==0) { b=a/400; cout<<a<<"Yes"; } else { cout<<a<<"No"; } return 0; }
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
3264No