闰年的英文表述:Leap Year 润年:非整百年中是4的倍数的年份 或者 正百年中是400的倍数的年份 闰年特点:比平年多一天:2月多一天
某一年yyyy的天数:365 + isLeap(yyyy)
365 + isLeap(yyyy)
bool isLeap(int year) { return year % 100 && year % 4 == 0 || year % 400 == 0; }