In the text box below, write a switch structure which displa…
In the text box below, write a switch structure which displays Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, if day is 0, 1, 2, 3, 4, 5, 6, respectively. To earn full credit on this exercise, I should be able to copy your switch structure from the text box, paste it into a main() method in NetBeans, and it must work as specified. . Here is an example of what the beginning of the switch should look like. Assume that the day variable has been declared and initialized to an int value between 0 and 6: switch(day) { }