http://acm.hdu.edu.cn/showproblem.php?pid=2005
第几天?
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 30000 Accepted Submission(s): 11576
Problem Description
给定一个日期,输出这个日期是该年的第几天。
Input
输入数据有多组,每组占一行,数据格式为YYYY/MM/DD组成,具体参见sample input ,另外,可以向你确保所有的输入数据是合法的。
Output
对于每组输入数据,输出一行,表示该日期是该年的第几天。
Sample Input
1985/1/20 2006/3/12
Sample Output
20 71
- #include<iostream>
- using namespace std;
- int main()
- {
- int y,m,d,outn,flog,i;
- char c;
- while(cin>>y>>c>>m>>c>>d)
- {
- if(m==1)
- outn=d;
- else if(m==2)
- outn=31+d;
- else if(m>2&&m<8)
- {
- outn=31+28+d;
- flog=1;
- for(i=3;i<m;i++)
- {
- if(flog>0)
- {
- outn+=31;
- flog=-flog;
- }
- else
- {
- outn+=30;
- flog=-flog;
- }
- }
- }
- else if(m>7&&m<13)
- {
- outn=31+28+31+30+31+30+31+d;
- flog=1;
- for(i=8;i<m;i++)
- {
- if(flog>0)
- {
- outn+=31;
- flog=-flog;
- }
- else
- {
- outn+=30;
- flog=-flog;
- }
- }
- }
- if(((y%4==0)&&(y%100!=0)||(y%400==0))&&m>2)
- outn+=1;
- cout<<outn<<endl;
- }
- return 0;
- }
本文详细阐述了如何通过编程解决给定日期计算其在当年中的位置问题,包括输入输出规范、算法实现及代码示例。
2363

被折叠的 条评论
为什么被折叠?



