标签:语句 color div font ++ 循环 就是 size ret
在写程序之前应该要知道闰年的定义:
1 # include<stdio.h>
2 int main()
3 {
4 int count = 0;表示个数
5 int year;//表示年份
6 for (year = 1000;year <= 2000;year++)
7 {
8 if (year% 400 == 0)//判断是否为世纪润年
9 {
10 printf("%d ", year);
11 count++;
12 }
13 else if(year % 4 == 0 && year % 100 != 0)//判断是否为普通润年
14 {
15 printf("%d ", year);
16 count++;
17 }
18 }
19 printf("count=%d\n",count);
20
21 return 0;
22 }
标签:语句 color div font ++ 循环 就是 size ret
原文地址:https://www.cnblogs.com/cuckoo-/p/10257456.html