Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97677 刘济玮 闰年的数量 C++ Accepted 1 MS 280 KB 318 2024-11-16 12:11:27

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; bool run(int year){ if(year%4==0 && year%100!=0){ return 1; }else if(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(run(i)==1){ sum++; } } cout<<sum; return 0; }