当前位置:   article > 正文

C语言计算有多少闰年(答案原创)_从键盘输入你的出生年和今年的年份,编程判断并输出从你的出生年到今年之间中有多

从键盘输入你的出生年和今年的年份,编程判断并输出从你的出生年到今年之间中有多

题目内容:

从键盘输入你的出生年和今年的年份,编程判断并输出从你的出生年到今年之间中有多少个闰年。

程序的运行结果示例1:

Input your birth year:2000↙

Input this year:2020↙

2000

2004

2008

2012

2016

2020

count=6

输入提示信息:“Input your birth year:”

输入提示信息:“Input this year:”

输入格式:"%d"

输出格式:

闰年年份: “%d\n”

闰年总数:“count=%d\n”

为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。

#include <stdio.h>
#include <stdlib.h>
int main()
{	int i,byear,tyear,ryear,count=0;
	printf("Input your birth year:");
	scanf("%d",&byear);
    printf("Input this year:");
    scanf("%d",&tyear);
    //开始计算闰年
    for(i=byear;i<=tyear;i++)
    {
		if((i%4==0 && i%100!=0) || i%400==0)
		{	printf("%d\n",i);
            count++;
        }
    }
    printf("count=%d\n",count);
	system("pause");
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/590841
推荐阅读
相关标签
  

闽ICP备14008679号