I am very new to Java and trying to figure this problem out. Given the year, the month and day, I have to validate it first and do addition and subtraction to the date.
public class Date {
// fields
private int month;
private int day;
private int year;
// constructor
public Date(int month, int day, int year){
    this.month = month;
    this.day = day;
    this.year = year;
}
public void setMonth(int month){
    this.month = month;
}
public void setDay(int day){
    this.day = day;
}
public void setYear(int year){
    this.year = year;
}
public int getMonth(){
    return month;
}
public int getDay(){
    return day;
}
public int getYear(){
    return year;
}
public String displayDate(){
    return month + "/" + day + "/" + "/" + year;
}
}
 
    