JAVA)DAY +1일하기 || +윤년추가
날짜를 입력하면 +1DAY를 해주는 프로그램입니다. (+추가 윤년이 계산되지않아 윤년을 계산하여 적용시켰습니다.) class Date { private int month; private int day; private int year; int[] daysPerMonth = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; public Date( int month, int day, int year ) { this.month = checkMonth( month); this.year = year; this.day = checkDay( day ); } private int checkMonth( int testMonth ) { if ( testMonth >= 1 &&..
2020. 7. 18.