Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37716 teacher_lu 判断闰年 C++ 编译错误 0 MS 0 KB 182 2024-01-22 19:38:43

Tests(0/0):


#include <bits/stdc++.h> using namesapce std; int main(){ int x; cin >> x; if(x%400==0 or (x%4==0 and x%100!=0)) cout << "Y"; else cout << "N"; return 0; }


测评信息: