#include int main() { int choice; cout <<"What flavor ice cream do you want?" << endl; cout <<" Enter 1 for chocolate" << endl; cout <<" Enter 2 for vanilla" << endl; cout <<" Enter 3 for strewberry" << endl; cout <<" Enter 4 for green tea flavor, yuck" << endl; cout <<"Enter your choice :"; cin >> choice; if (choice == 1) { cout <<"Chocolate, great choice" << endl; } else if (choice == 2) { cout <<"Vanillarific" << endl; } else if (choice == 3) { cout <<"Great choice" << endl; } else if (choice == 4) { cout <<"Big mistake" << endl; } else { cout <<"We don't have any" << endl; cout <<"Make another selection\n" << endl; } return 0; } //hw.. convert this program using the switch.