Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5469 吴承熹 08有几个闰年 C++ Wrong Answer 0 MS 260 KB 306 2024-11-16 14:01:17

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c; if(a%4==0){ d=d+1; } else if(b%4==0){ d=d+1; } else{ if(c%4==0){ d=d+1; } else{ } } return 0; }


Run Info:

------Input------
3789 3161 3511
------Answer-----
0
------Your output-----