| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144854 | 刘宸宇 | 08判断是否为闰年 | C++ | Accepted | 0 MS | 272 KB | 202 | 2026-01-24 19:15:27 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; cout<<a; if(a%400==0||(a%4==0&&a%100!=0)) cout<<" Yes"<<endl; else cout<<" No"<<endl; return 0; }