Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
124933 吴悠 判断闰年 C++ 通过 100 0 MS 248 KB 176 2024-01-23 16:12:00

Tests(12/12):


#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n%4==0 && (n%100!=0 || n%400==0)){ cout<<"Y"<<endl; } else cout<<"N"<<endl; return 0; }


测评信息: