年
判断结果
-
全年总天数
365
Days in Month & Leap Year Check
if (year % 400 == 0) -> Leap (闰年)
else if (year % 100 == 0) -> Common (平年)
else if (year % 4 == 0) -> Leap (闰年)
else -> Common (平年)