In the C++ program below, replace as many conditional statements as possible in the 12 Days Of Christmas song with one or more arrays.
In the C++ program below, replace as many conditional statements as possible in the 12 Days Of Christmas song with one or more arrays.
#include <iomanip>
#include <iostream>
#include <string>
using namespace std;
int main()
{
for (int day = 1; day <= 12; ++day)
{
cout << "On the ";
switch (day)
{
case 1:
cout << "first";
break;
case 2:
cout << "second";
break;
case 3:
cout << "third";
break;
case 4:
cout << "fourth";
break;
case 5:
cout << "fifth";
break;
case 6:
cout << "sixth";
break;
case 7:
cout << "seventh";
break;
case 8:
cout << "eighth";
break;
case 9:
cout << "ninth";
break;
case 10:
cout << "tenth";
break;
case 11:
cout << "eleventh";
break;
default:
cout << "twelfth";
}
cout << " of day of Christmas" << endl;
cout << "my true love sent to me:" << endl;
for (int gift = day; gift >= 1; --gift)
switch (gift)
{
case 1:
if (day == 1)
cout << "A Partridge in a Pear Tree" << endl;
else
cout << "And a Partridge in a Pear Tree" << endl;
break;
case 2:
cout << "2 Turtle Doves," << endl;
break;
case 3:
cout << "3 French Hens," << endl;
break;
case 4:
cout << "4 Calling Birds, " << endl;
break;
case 5:
cout << "5 Golden Rings," << endl;
break;
case 6:
cout << "6 Geese a Laying," << endl;
break;
case 7:
cout << "7 Swans a swimming," << endl;
break;
case 8:
cout << "8 Maids a Milking," << endl;
break;
case 9:
cout << "9 Ladies Dancing," << endl;
break;
case 10:
cout << "10 Lords a leaping," << endl;
break;
case 11:
cout << "11 Pipers Piping," << endl;
break;
default:
cout << "12 Drummers Drumming," << endl;
}
cout << endl;
}
system("pause");
return 0;
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)