首页 > 其他 > 详细

今年的第几天?

时间:2019-03-07 00:13:39      阅读:192      评论:0      收藏:0      [点我收藏+]

题目描述

输入年、月、日,计算该天是本年的第几天。

输入描述:

包括三个整数年(1<=Y<=3000)、月(1<=M<=12)、日(1<=D<=31)。

输出描述:

输入可能有多组测试数据,对于每一组测试数据,
输出一个整数,代表Input中的年、月、日对应本年的第几天。
示例1

输入

复制
1990 9 20
2000 5 1

输出

复制
263
122

代码:
技术分享图片
#include <iostream>
#include <string>
using namespace std;
int main()
{

    int year, month, day;
    int days[12] = { 31, 30, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    while (cin >> year >> month >> day)
    {
        //判断二月有多少天
        if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
        {
            days[1] = 29;
        }
        else
        {
            days[1] = 28;
        }
        int out=0;
        for (int i = 1; i < month;i++)
        {
            out += days[i-1];
        }
        cout << (out + day) << endl;

    }

    return 0;
}
View Code

 

今年的第几天?

原文:https://www.cnblogs.com/hequnwang/p/10486762.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!