Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
2234 Duck [在线测评解答教程] 闰年 C++ 解答错误 0 MS 240 KB 192 2022-12-04 17:40:21

Tests(0/11):


#include<bits/stdc++.h> using namespace std; int main() { int year; cin>>year; if(year%4==0&&year%1000!=0||year%4000==0) { cout<<"No"; } else cout<<"Yes"; return 0; }


测评信息: