其他分享
首页 > 其他分享> > 洛谷P5737 【深基7.例3】闰年展示经典解法

洛谷P5737 【深基7.例3】闰年展示经典解法

作者:互联网

#include<stdio.h>
int a[2000];
int year(int n) {
	if (n % 400 == 0 || (n % 4 == 0 && n % 100 != 0))
		return(1);
	else
		return(0);
}
int main() {
	int x, y, i, j;
	scanf("%d%d", &x, &y);
	for(i=x,j=0;i<=y;i++)
		if (year(i) == 1) {
			a[j] = i;
			j++;
		}
	printf("%d\n", j);
	if (j > 0) {
		for (i = 0; i < j - 1; i++)
			printf("%d ", a[i]);
		printf("%d", a[j - 1]);
	}
	return(0);
}

标签:P5737,洛谷,int,深基,++,printf,return,main
来源: https://blog.csdn.net/weixin_52075219/article/details/114240113