Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118029 | 万嘉宇 | 08判断是否为闰年 | C++ | Wrong Answer | 0 MS | 272 KB | 403 | 2025-04-22 19:25:16 |
#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 eyar; cin>>eyar; if(eyar%4==0){ cout<<"年份""Yes"; } else{ cout<<"年份""No"; } return 0; }
------Input------
3264
------Answer-----
3264 Yes
------Your output-----
年份Yes