摘要: int main(){ int i; int count = 0; for (i = 1000; i <= 2000; i++) { if (i % 4 == 0 && i%100 !=0) { printf("1000-2000年之间的闰年:%d\n", i); count++; } else i 阅读全文
posted @ 2022-11-27 18:23 小蠕虫 阅读(108) 评论(0) 推荐(0)