Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
75692 sh25_zhuwy 判断闰年 C++ 通过 0 MS 236 KB 217 2025-12-09 14:31:48

Tests(1/1):


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


测评信息: