码迷,mamicode.com
首页 > 其他好文 > 详细

闰年的输出

时间:2015-09-27 06:37:29      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:闰年的输出   c语言实现   

★判断输入的年份段中有哪些年份是闰年,并统计闰年个数
#include<stdio.h>
int main()
{
int year;
int count=0;
printf("1000~2000年间的闰年显示:\n");
for (year = 1000; year < 2001; year++)//年份的上下限
{
if ((year % 4 == 0) && (year % 100 != 0))//闰年的判断条件
{
count++;
printf("%d\t", year);
}
else if ((year % 400 == 0))
{
count++;
printf("%d\t", year);
}
}
printf("\n");
printf("闰年个数:%d\n", count); //统计闰年个数
return 0;
}


本文出自 “温暖的微笑” 博客,请务必保留此出处http://10738469.blog.51cto.com/10728469/1698445

闰年的输出

标签:闰年的输出   c语言实现   

原文地址:http://10738469.blog.51cto.com/10728469/1698445

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!