摘要: #include <stdio.h>#include <stdlib.h> int isLeapYear(int year) { if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { return 1; // 是闰年 } else 阅读全文
posted @ 2024-03-21 11:11 不洗澡超酷 阅读(31) 评论(0) 推荐(0)