Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
78099 sh25_shenpy 判断闰年 C++ 通过 0 MS 252 KB 165 2025-12-26 15:22:00

Tests(1/1):


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


测评信息: