Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38016 yuzhengxun 判断闰年 C++ 解答错误 0 MS 240 KB 169 2024-01-24 14:33:04

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if(a%4==0&&a%100!=0&&a%400==0){ cout<<"y"; }else{ cout<<"n"; } return 0; }


测评信息: