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

Tests(0/11):


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


测评信息: