Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4627 高振轩 判断闰年I C++ Wrong Answer 0 MS 256 KB 180 2024-08-24 15:43:57

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a/400==0&&a/4==0){ cout<<"leap year"<<endl; } else{ cout<<"not leap year"<<endl; } }


Run Info:

------Input------
2012
------Answer-----
leap year
------Your output-----
not leap year