Question: Java Program Program 02. Assume the first day of a month is Sunday. Write a program that will return the day of when the user
Program 02. Assume the first day of a month is Sunday. Write a program that will return the day of when the user enters the day of the month. the week Here is how the program run: Enter an integer day: 1 The week day of day 1 is: Sunday Another sample run: Enter an integer day: 23 The week day of day 23 is: Monday Hint: switch (day % 7) { case 0: break; case 1: break
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
