★判断输入的年份段中有哪些年份是闰年,并统计闰年个数 #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
原文地址:http://10738469.blog.51cto.com/10728469/1698445