Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38830 奚晨瑞 判断闰年 C++ 通过 1 MS 236 KB 165 2024-01-28 17:10:24

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"; } }


测评信息: