判断闰年

作者:追风剑情 发布于:2019-3-15 23:43 分类:Algorithms

// 判断year年是否为闰年
public static bool IsLeapYear(int year)
{
       bool b1 = (year % 4 == 0) && (year % 100 != 0);
       bool b2 = (year % 400 == 0);
       return b1 || b2;
}

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号