编写函数leap判断是否是闰年

更新时间:01-23 教程 由 趁年轻 分享

编写函数leap判断是否是闰年?

#include int IsLeap(int year) { if(year%4!=0) return 0; if(year%100!=0) return 1; if(year%400!=0) return 1; return 0; } void main() { int y; scanf("%d", y); if(isLeap(y)) printf("闰年"); else printf("平年"); }

声明:关于《编写函数leap判断是否是闰年》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2177975.html