Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
353629 沈昊煊 【C1-8】判断闰年 C++ 通过 100 5 MS 248 KB 184 2025-09-30 19:25:49

Tests(4/4):


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


测评信息: