This is the problem I have to do for a lab. I am not asking anyone to do the work for me but if they could just start it because I have no idea and my textbook doesn't help me very much with this one. I have been working on it for a week and can't even get started. I just need an example of how it would look or just how to switch the suffixes and have everything print. I have no idea how to start the switch statement. Thanks for any help given!
2. Design and implement an application that prints the verses of the song “The Twelve Days of Christmas”, in which each verse adds one line. The two verses of the song are:
On the 1st day of Christmas my true love gave to me
A partridge in a pear tree
On the 2nd day of Christmas my true love gave to me
Two turtles doves and,
A partridge in a pear tree
Use a switch statement in a loop to control which lines get printed. Hint: Order the cases carefully and avoid the break statement. Use a separate switch statement to put the appropriate suffix on the day number (1st, 2nd, 3rd, etc.).