You are viewing a single comment's thread. Return to all comments →
import java.time.LocalDate;
public static String findDay(int month, int day, int year) { String WeekDay = LocalDate.of(year, month, day).getDayOfWeek().name(); return WeekDay; }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Date and Time
You are viewing a single comment's thread. Return to all comments →
import java.time.LocalDate;
public static String findDay(int month, int day, int year) { String WeekDay = LocalDate.of(year, month, day).getDayOfWeek().name(); return WeekDay; }