Question: Write an entire program named DayOfWeek that asks the user for an integer, and then uses % (the mod operator) to print the day of
Write an entire program named DayOfWeek that asks the user for an integer, and then uses % (the mod operator) to print the day of the week, assuming:
| Number | Day of Week |
|---|---|
| 0 | Saturday |
| 1 | Sunday |
| 2 | Monday |
| 3 | Tuesday |
| 4 | Wednesday |
| 5 | Thursday |
| 6 | Friday |
For example, if the user enters the number 17, the program will print \Tuesday".
Print the result for the user.
Java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
