int 返回月的天数(int 年, int 月)
{//缘由https://bbs.csdn.net/topics/395074486
return (月 == 2 ?
((((!(年 % 4) && 年 % 100) || !(年 % 400)) ? 1 : 0) ? 29 : 28) :
(((月 <= 7 && 月 % 2) || (月>7 && !(月 % 2))) ? 31 : 30));
}
int 返回年总天数(int 年)
{
return ((年) ? 365 * ...