//complete the following program to display the 12 days of Christmas //the text for each day should only appear once in code #include using namespace std; void main() { for(int dayOfChristmas = 1; dayOfChristmas <= 12; dayOfChristmas++) { cout << endl << endl << "On the "; //display "first", "second", "third",... //use break statements in this one switch(dayOfChristmas) { } cout << " day of Christmas my true love gave to me " << endl; //display the lyrics for the current day //no break statements in this one switch(dayOfChristmas) { } } }