1. 程式人生 > >在螢幕上輸出2000年之前的所有閏年以及閏年的個數

在螢幕上輸出2000年之前的所有閏年以及閏年的個數

這道題很簡單,和之前發的求閏年的程式是一樣的,就不過多的解釋了。

#include <stdio.h>
#include <windows.h>
int main()
{
	int year = 0;
	int count = 0;
	for (year = 1; year <= 2000; year++)
	{
		if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
		{
			count++;
			printf("%d\n",year);
		}
	}
	printf("%d\n",count);
	system("pause");
	return 0;
}

程式結果為: