闰年个数(非循环)

2023-05-06 16:37:04 浏览数 (1)

代码语言:javascript复制
#include <stdio.h>
int main()
{
	int n, i, count = 0, test;
	scanf("%d", &n);
	for (i = 1; i <= n;   i)// 循环版 
	{
		if (i % 4 == 0 && i % 100 != 0 || i % 400 == 0)
		{
			  count;
		}
	}
	// 非循环 
	test = n / 4 - n / 100   n / 400;// 直接算闰年个数,不用循环 
	printf("test: %dncount: %d", test, count);
	return 0;
}

0 人点赞