Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
31600 闻航 判断闰年 C++ 通过 0 MS 252 KB 224 2023-11-19 19:46:10

Tests(1/1):


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


测评信息: