计算一年中的第几天

今年的第几天? 

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

输入描述:

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

输入可能有多组测试数据,对于每一组测试数据,

输出一个整数,代表Input中的年、月、日对应本年的第几天。示例1 

输入

 1990 9 20

2000 5 1

输出

263

122

代码:

#include<bits/stdc++.h>

using namespace std;

int main()

{

    int year,month,day;

    while(cin>>year>>month>>day)

    {  

        int months[13]={0,31,0,31,30,31,30,31,31,30,31,30,31};

        if(year%400==0 || year%100!=0 && year%4==0) months[2]=29;

        else months[2]=28;

        int i;

        for(i=1;i<month;i++) day+=months[i];

        cout<<day<<endl;

    }

}

猜你喜欢

转载自blog.csdn.net/2302_77099705/article/details/130926348