一. 函数描述
自定义一个函数,传入一个年份n,判断是否为闰年。若是返回1,否则返回0。
二. 相关说明
平年二月28,闰年二月29。
平年有365天,闰年·有366天。
闰年判断方法:
该年份能被4整除,但不能被100整除,是闰年。
该年份能被400整除,是闰年。
三. 函数实现
int IsLeapYear(int year) { if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) return 1; else return 0; }