Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5458 吴承熹 08有几个闰年 C++ Wrong Answer 0 MS 264 KB 228 2024-11-16 13:19:42

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; } if(b%4==0){ d=d+1; } if(c%4==0){ d=d+1; } return 0; }


Run Info:

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