-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDate.java
71 lines (62 loc) · 1.25 KB
/
Date.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
public class Date {
private int year;
private int month;
private int day;
public Date(){
year = 0;
month = 0;
day = 0;
}
public Date(int month, int day, int year){
this.year = year;
this.month = month;
this.day = day;
}
public int dayOfYear() {
int totalDays = 0;
switch (month) {
case 12: totalDays += 30;
case 11: totalDays += 31;
case 10: totalDays += 30;
case 9 : totalDays += 31;
case 8 : totalDays += 31;
case 7 : totalDays += 30;
case 6 : totalDays += 31;
case 5 : totalDays += 30;
case 4 : totalDays += 31;
case 3 : totalDays += 28;
case 2 : totalDays += 31;
}
totalDays += day;
return totalDays;
}
public int compare(Date s2){
int total=0;
int dif = Math.abs((s2.dayOfYear() - this.dayOfYear())) + Math.abs(365*(this.getYear() - s2.getYear())) ;
dif = dif/30;
if(dif < 60){
total = 60-dif;
}
else
total = 0;
return total;
}
public int getYear(){
return year;
}
public int getMonth(){
return month;
}
public int getDay(){
return day;
}
public void setYear(int year){
this.year=year;
}
public void setMonth(int month){
this.month = month;
}
public void setDay(int day){
this.day = day;
}
}