Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
125307 汤雨帆 判断闰年 C++ 编译错误 0 0 MS 0 KB 210 2024-01-23 16:42:53

Tests(0/0):


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


测评信息: