第几天?
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 90490 Accepted Submission(s): 34039
Problem Description
给定一个日期,输出这个日期是该年的第几天。
Input
输入数据有多组,每组占一行,数据格式为YYYY/MM/DD组成,具体参见sample input ,另外,可以向你确保所有的输入数据是合法的。
Output
对于每组输入数据,输出一行,表示该日期是该年的第几天。
Sample Input
Sample Output
#include<algorithm>
#include<iostream>
using namespace std;
int monthdays [13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int main()
{
int nMonth,nYear,nDate,nDays,i;
char cNull;
while(cin >> nYear >> cNull >> nMonth >> cNull >> nDate)
{
nDays = 0;
for(i = 1; i < nMonth; i++ )
{
nDays += monthdays[i];
}
if(nYear % 400 == 0 || nYear % 4 == 0 && nYear % 100 != 0)
if(nMonth > 2) nDays ++;
nDays += nDate;
cout << nDays << endl;
}
}
Author
|