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

计算日期

时间:2018-02-18 18:38:10      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:statistic   pop   stream   while   html   mes   end   ++   track   

#include<iostream>
using namespace std;
int Monthday[12]={31,28,31,30,31,30,31,31,30,31,30,31};
int main()
{
int N;
cin>>N;
while(N--)
{
	int year,month,day;
	cin>>year>>month>>day;
	int result=0;
	for(int i=0;i<=month-2;i++)
	{
		result+=Monthday[i];
	}
	result+=day;
	if((year%4==0&&year%100!=0)||year%400==0)
	{
		if(month>2)
			result++;

	}
	cout<<result<<endl;
}
}
计算润年

计算日期

标签:statistic   pop   stream   while   html   mes   end   ++   track   

原文地址:https://www.cnblogs.com/zhchoutai/p/8453005.html

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