Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98112 陈家渝 判断闰年I C++ Wrong Answer 0 MS 272 KB 417 2024-11-17 12:56:19

Tests(0/1):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int y; cin>>y; if(2000-2500&&y/400) { cout<<"not leap year"; } else { cout<<"leap year"; } return 0; }


Run Info:

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