求1000-2000之间的闰年,C语言代码实现
2021-03-21 03:24
标签:ffffff code printf 语言 turn -o oss shadow 不能 求1000-2000之间的闰年,C语言代码实现 标签:ffffff code printf 语言 turn -o oss shadow 不能 原文地址:https://blog.51cto.com/14950896/2545765
要求:打印1000年到2000年之间的闰年
思路:满足闰年的条件、
1.可以被4整除但不能被100整除
2.可以被400整除
满足这两个条件之一的都可以
代码实现
int main()
{
int count = 0;//解法一
int year = 1000;
for (year = 1000; year
运行结果
![](https://s4.51cto.com/images/blog/202010/31/b3a78d508b26d188920225df9ccdf342.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=)
文章标题:求1000-2000之间的闰年,C语言代码实现
文章链接:http://soscw.com/index.php/essay/66984.html