使用C语言判断闰年and打印1000-2000之间闰年
普通闰年:公历年份是4的倍数,且不是100的倍数的,为闰年(如2004年、2020年等就是闰年)。
世纪闰年:公历年份是整百数的,必须是400的倍数才是闰年(如1900年不是闰年,2000年是闰年)
判断闰年
理解普通闰年及世纪闰年定义的条件并进行判定。
代码如下
c
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main()
{
int year = 0;
scanf("%d", &year);
if (year % 100 != 0 && year % 4 == 0 || year % 400 == 0)
{
printf("%d是闰年",year);
}
else
{
printf("%d不是闰年",year);
}
return 0;
}
打印1000-2000之间闰年
判断条件相同,符合条件打印即可
c
#include <stdio.h>
int main()
{
for (int i = 1000; i <= 2000; i++)
{
if (i % 100 != 0 && i % 4 == 0 || i % 400 == 0)
{
printf("%d ",i);
}
}
return 0;
}