笔记

判断闰年: return ( y % 400 == 0) || (y % 100 != 0 && y % 4 == 0);

posted on 2023-03-13 22:47  rain_wind_read  阅读(18)  评论(0)    收藏  举报