码迷,mamicode.com
首页 > 其他好文 > 详细

今年的第几天?

时间:2019-03-07 01:02:56      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:question   std   计算   open   pac   using   pen   sed   names   

题目描述

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

输入描述:

包括三个整数年(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

 

今年的第几天?

标签:question   std   计算   open   pac   using   pen   sed   names   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!