// Write a program that display a menu of beverage choices and asks the user to select // an item. Display the selection they made. #include using namespace std; int main() { int x, cout << "Welcome to the Rehydration Shack" << endl; cout << endl << "Please choose one of the following items:"<> x; switch (x) { case 1: cout << "espresso coming up!" << endl; break; case 2: cout << "Tea's a good choice today!" << endl; break; case 3: cout << "water is always refreshing!" << endl; break; default: cout << " a legal value was not entered" << endl; } }