The switch() statement is a selection control structure that allows one of several alternatives to be executed, depending on the value a variable takes. To be more precise, a switch() statement allows a variable to be compared to a list of values. Each value is called a case. If the variable equals a value from the list then the instructions following that particular case are executed.
Please complete the program below so that it prints out the correct month, depending on the value of the variable “month”. For example, if month=3, the program should print