Description: The following program takes three numbers as input date: month, date, year and returns the week-day corresponding to it. Primary Inputs: Three numbers (month m, day d, year yyyy) Primary Output: Determine the week-day (sunday, monday etc.) for the input date. Platform Used: JDK 1.6 with Notepad. import java.io.*; class DayOfWeek { public static void main(String[] args) { // ...