1000----2000年之间的闰年
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1000----2000年之间的闰年相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<stdlib.h> int main() { int year=0; int count=0; //计算有多少个闰年 for(year=1000;year<=2000;year++) { if((year%4==0&&year%100!=0)||(year%400==0)) { printf("%5d",year); count++; } } printf("\n"); printf("%d\n",count); system("pause"); return 0; }
本文出自 “岁月静好” 博客,请务必保留此出处http://01160529.blog.51cto.com/11479142/1789161
以上是关于1000----2000年之间的闰年的主要内容,如果未能解决你的问题,请参考以下文章