P5737 深基7.例3闰年展示
Posted Kunkun只喝怡宝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P5737 深基7.例3闰年展示相关的知识,希望对你有一定的参考价值。
题目描述
输入 x,y(1582≤x<y≤3000) ,输出 [x,y] 区间中闰年个数,并在下一行输出所有闰年年份数字,使用空格隔开。
代码
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,y,a[1500],i,j=0,cnt=0;
cin>>x>>y;
for(i=x;i<=y;i++){
if((i%100!=0&&i%4==0)||i%400==0){
cnt++;
a[j++]=i;
}
}
cout<<cnt<<endl;
for(i=0;i<j;i++)
cout<<a[i]<<" ";
return 0;
}
以上是关于P5737 深基7.例3闰年展示的主要内容,如果未能解决你的问题,请参考以下文章