Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144758 田祥江 闰年的数量 C++ Accepted 0 MS 280 KB 295 2026-01-24 17:16:21

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; bool a(int year){ if(year%4==0&&year%100!=0||year%400==0) return 1; else return 0; } int main() { int x,y,sum=0; cin>>x>>y; for(int i=x;i<=y;i++){ if(a(i)) sum++; } cout<<sum; return 0; }