
Code:
#include <iostream>
using namespace std;
int main()
{
//Declare Variables
int menu_choice = 0;
int next_menu_choice = 0;
int Raleigh = 1;
int Durham = 2;
int ChapelHill = 3;
switch ( menu_choice )
{
case 1:
// Display the area menu
cout << "Area Menu"
<< "1 = Raleigh"
<< "2 = Durham"
<< "3 = ChapelHill";
cout << "Enter a menu choice: ";
cin >> next_menu_choice;
cout << endl;
switch ( next_menu_choice )
{
case '1':
cout << "Make a new appointment in Raleigh";
cin >> 1;
cout << "Make a new appointment in Durham";
cin >> 2;
cout << "Make a new appointment in Chapel Hill";
cin >> 3;
endl;
break;
case '2':
cout << "Reschedule an appointment in Raleigh";
cin >> 1;
cout << "Reschedule an appointment in Durham";
cin >> 2;
cout << "Reschedule an appointment in Chapel Hill";
cin >> 3;
endl;
break;
case '3':
cout << "Billing questions in Raleigh";
cin >> 1;
cout << "Billing questions in Durham";
cin >> 2;
cout << "Billing questions in Chapel Hill";
cin >> 3;
endl;
break;
case '4':
cout << "Talk to a nurse in Raleigh";
cin >> 1;
cout << "Talk to a nurse in Durham";
cin >> 2;
cout << "Talk to a nurse in Chapel Hill";
cin >> 3;
endl;
break;
} //end switch
cout << endl;
system("pause");
return 0;
} //end of main function

