Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147502 赖泓宇 08有几个闰年 C++ Wrong Answer 0 MS 268 KB 220 2026-02-05 16:19:41

Tests(2/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,s=0; cin>>a>>b>>c; if(a/4==0 && a%100!=0){ s++; } if(b/4==0 && a%100!=0){ s++; } if(c/4==0 && a%100!=0){ s++; } cout<<s; }


Run Info:

------Input------
3637 2104 2522
------Answer-----
1
------Your output-----
0