有兩個日期,求兩個日期之間的天數,如果兩個日期是連續的我們規定他們之間的天數為兩天。
輸入有多組資料,每組資料有兩行,分別表示兩個日期,形式為yyyymmdd
輸出每組資料輸出一行,即日期差值
樣例輸入 copy
20130101
20130105
樣例輸出 copy
5
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using
namespace std;
int day[13]
[2]=
;bool
judge
(int x)
intmain()
y1=year1/
10000
; m1=year1%
10000
/100
; d1=year1%
100;
y2=year2/
10000
; m2=year2%
10000
/100
; d2=year2%
100;
int ans=1;
while
(y1if(m1==13)
} cout<}return0;
}
問題 A 日期差值
時間限制 1 sec 記憶體限制 32 mb 有兩個日期,求兩個日期之間的天數,如果兩個日期是連續的我們規定他們之間的天數為兩天。有多組資料,每組資料有兩行,分別表示兩個日期,形式為yyyymmdd 每組資料輸出一行,即日期差值 20130101 201301055 includeint month...
問題 A 日期差值
有兩個日期,求兩個日期之間的天數,如果兩個日期是連續的我們規定他們之間的天數為兩天。有多組資料,每組資料有兩行,分別表示兩個日期,形式為yyyymmdd 每組資料輸出一行,即日期差值 20130101 201301055 include int year 2 12 int isleap int ye...
問題 A 日期差值
有兩個日期,求兩個日期之間的天數,如果兩個日期是連續的我們規定他們之間的天數為兩天。輸入 有多組資料,每組資料有兩行,分別表示兩個日期,形式為yyyymmdd 輸出 每組資料輸出一行,即日期差值 include intisleapyear int year 判斷是否是閏年 intmain int t...