摘要: #include <stdio.h> typedef struct date { int year, month, day; }DATE; int runYear(int year) { if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) 阅读全文
posted @ 2023-04-14 21:26 258333 阅读(6) 评论(0) 推荐(0) 编辑