You are on page 1of 1

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; } }

You might also like