Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
69845 sh25_wuyy [在线测评解答教程] 闰年 C++ 解答错误 0 MS 244 KB 355 2025-10-11 19:31:18

Tests(0/11):


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


测评信息: