We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Java
- Introduction
- Java Date and Time
- Discussions
Java Date and Time
Java Date and Time
Sort by
recency
|
1506 Discussions
|
Please Login in order to post a comment
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; }