判断闰年

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

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

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号