Skip to content

Instantly share code, notes, and snippets.

View SiddharthManthan's full-sized avatar

Siddharth Manthan SiddharthManthan

View GitHub Profile
public class SimpleDate {
private int day;
private int month;
private int year;
public SimpleDate(int day, int month, int year) {
this.day = day;
this.month = month;
this.year = year;
}