摘要: boolean isLeapYear(int year) { return year%100==0?year%400==0:year%4==0; } 阅读全文
posted @ 2007-12-07 13:10 张旋 阅读(320) 评论(0) 推荐(0) 编辑