日期之间隔几天Java
文章发布较早,内容可能过时,阅读注意甄别。
# 题目
请你编写一个程序来计算两个日期之间隔了多少天。
日期以字符串形式给出,格式为 YYYY-MM-DD,如示例所示。
示例 1:
输入:date1 = "2019-06-29", date2 = "2019-06-30"
输出:1
示例 2:
输入:date1 = "2020-01-15", date2 = "2019-12-31"
输出:15
提示:
- 给定的日期是 1971 年到 2100 年之间的有效日期。
# 思路
Math.abs
# 解法
class Solution {
static int[] months = {0,31,59,90,120,151,181,212,243,273,304,334};
public static int daysBetweenDates(String date1, String date2) {
return Math.abs(countdays(date1)-countdays(date2));
}
public static int countdays(String date){
String[] split = date.split("-");
int year = Integer.valueOf(split[0]);
int month = Integer.valueOf(split[1]);
int days = Integer.valueOf(split[2]);
int farbrary = 0;
if (month>2&&((year%4==0&&year%100!=0)||year%400==0)){
farbrary=1;
}
year--;
return year*365 + year/4 - year/100 +year/400 +months[month-1]+farbrary+days;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 总结
- 分析出几种情况,然后分别对各个情况实现