You are viewing a single comment's thread. Return to all comments →
public static String findDay(int month, int day, int year) { Calendar cal = Calendar.getInstance(); cal.set(year,month-1,day); return cal.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG_FORMAT, Locale.ENGLISH).toUpperCase(); }
passes all tests
Seems like cookies are disabled on this browser, please enable them to open this website
Java Loops II
You are viewing a single comment's thread. Return to all comments →
passes all tests