蓝桥0817-闰年判断个数
Posted 西湖盗月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝桥0817-闰年判断个数相关的知识,希望对你有一定的参考价值。
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> using namespace std; bool CheckYear(int n) { if(n % 400 == 0) return true; if(n % 4 == 0 && n % 100 != 0) return true; return false; } int main() { //闰年 int n; cin >> n; int sum = 0; for(int i = 2020;i<=n;i++) { if(CheckYear(i)) { //cout << i << endl; sum += 1; } } cout << sum << endl; return 0; }
以上是关于蓝桥0817-闰年判断个数的主要内容,如果未能解决你的问题,请参考以下文章