Month and Season
Create a variable month (store a number between 1 and 12). like month = 2;
Use a switch statement, potentially with nested logic, to determine and output the season:
12, 1, 2: "Winter"
3, 4, 5: "Spring"
6, 7, 8: "Summer"
9, 10, 11: "Autumn"
Include a default case for an invalid month number.