在linux下的C程序例子。
检查 输入的年份 是否为闰年。
1、编写一个布尔函数int is_leap_year(int year)
,判断参数year
是不是闰年。如果某一年的年份能被4整除,但不能被100整除,那么这一年就是闰年,此外,能被400整除的年份也是闰年。
#include
void is_leap_year(int years)
{
if((years % 4==0 && years%100 !=0) || years % 400 == 0)
{
printf(" %d is leap year.n",years);
return ;
}
else
{
printf("%d is not leap year . n",years);
}
}
int main(void)
{
int y;
printf("Please, Input year ");
scanf("%d",&y);
is_leap_year(y);
// printf("Is leap year ?n");
return 0;
}
~