This is the question, I have no idea where to start- Below are the lyrics for the song “The Twelve Days of Christmas.” The song contains a list of gifts received for the holiday. The list is cumulative so that as each “day” passes, a new verse contains all the words of the previous verse, plus a new item. On the 12th day of Christmas My true love gave to me Twelve drummers drumming Eleven pipers piping Ten lords a-leaping Nine ladies dancing Eight maids a-milking Seven swans a-swimming Six geese a-laying Five golden rings Four calling birds Three French hens Two turtle doves and A partridge in a pear tree Write an application that displays the words to the song starting with any day the user enters. (Hint: Use a switch statement with cases in descending day order and without any break statements so that the lyrics for any day repeat all the lyrics for previous days.) This is what it has given me - import java.util.*; public class TwelveDays { Scanner input = new Scanner(System.in); public static void main (String args[]) { // Write code here } public static int getChoice() { // Write code here } }
This is the question, I have no idea where to start-
Below are the lyrics for the song “The Twelve Days of Christmas.” The song contains a list of gifts received for the holiday. The list is cumulative so that as each “day” passes, a new verse contains all the words of the previous verse, plus a new item.
On the 12th day of Christmas My true love gave to me Twelve drummers drumming Eleven pipers piping Ten lords a-leaping Nine ladies dancing Eight maids a-milking Seven swans a-swimming Six geese a-laying Five golden rings Four calling birds Three French hens Two turtle doves and A partridge in a pear tree
Write an application that displays the words to the song starting with any day the user enters. (Hint: Use a switch statement with cases in descending day order and without any break statements so that the lyrics for any day repeat all the lyrics for previous days.)
This is what it has given me -
Trending now
This is a popular solution!
Step by step
Solved in 2 steps