今年的第幾天?

題目描述

輸入年、月、日,計算該天是本年的第幾天。

輸入描述:

包括三個整數年(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
相關文章
相關標籤/搜索