Please edit your post and put the code inside code brackets, use the '#' button to the right. This will format the text, keeping tabs, and will colour it and so on. A lot easier to read.
#include <iostream>
usingnamespace std;
//include protype functions
int main()
{
char choice;
bool terminate = false;
while (!terminate)
{
cout << "WELCOME TO SO-AND-SO BANK!\n\n" << "Please enter an option, are you a:\n\n"
<< "A)Customer\n"
<< "B)Bank Employee\n"
<< "C)Bank Supervisor\n"
<< "D)Quit the application\n\n";
cin >> choice;
switch(choice)
{
case'a':
case'A':
cout << "Welcome to So-and-So Bank Customer Services!\n" << "Please enter an option:\n\n";
//Customer options
cout << "A)Functions: Balance Inquiry\n"
<< "B)Deposit Funds\n"
<< "C)Withdraw funds\n"
<< "D)Transfer Funds to another account (like from Checking to Savings or to Credit Card)\n"
<< "E)Anything else that you want to add\n"
<< "F)Quit the application\n\n";
cin >> choice;
switch(choice)
{
case'a':
case'A':
break;
case'b':
case'B':
break;
case'c':
case'C':
break;
case'd':
case'D':
break;
case'e':
case'E':
break;
case'f':
case'F':
cout << "You have chosen to quit, we appreciate your business.";
terminate = true;
break;
default:
cout << "You have entered an invalid option, please try again.\n\n";
break;
}
break;
case'b':
case'B':
cout << "Welcome to So-and-So Bank Employee Services!\n" << "Please enter an option:\n\n";
//Cascading customer data
//a.Everything in the Customer Interface, plus
cout << "A)Interface to ADD a new Customer to the Bank\n"
<< "B)Interface to DELETE a Customer from the Bank\n"
<< "C)Search for a Record based on a “Name of a Customer” (using simple Sequential Search)\n"
<< "D)Quit the application\n\n";
cin >> choice;
switch(choice)
{
case'a':
case'A':
break;
case'b':
case'B':
break;
case'c':
case'C':
break;
case'd':
case'D':
cout << "You have chosen to quit, we appreciate your business.";
terminate = true;
break;
default:
cout << "You have entered an invalid option, please try again.\n\n";
break;
}
break;
case'c':
case'C':
cout << "Welcome to So-and-So Bank Supervising Services!\n" << "Please enter an option:\n\n";
//Cascading banker and customer data
//a.Everything in Bank Teller Interface, plus
cout << "A)Ability to List Total Number of Customers in Bank\n"
<< "B)Ability to List Total Amount of Money in the Bank\n"
<< "C)Ability to List Total Deposits in a Day\n"
<< "D)Ability to List Total Withdrawals in a Day\n"
<< "E)Ability to see/query detailed LOG of all transactions\n"
<< "F)Quit the application\n\n";
cin >> choice;
switch(choice)
{
case'a':
case'A':
break;
case'b':
case'B':
break;
case'c':
case'C':
break;
case'd':
case'D':
break;
case'e':
case'E':
break;
case'f':
case'F':
cout << "You have chosen to quit, we appreciate your business.";
terminate = true;
break;
default:
cout << "You have entered an invalid option, please try again.\n\n";
break;
}
break;
case'd':
case'D':
cout << "You have chosen to quit, we appreciate your business.";
terminate = true;
break;
default:
cout << "You have entered an invalid option, please try again.\n\n";
break;
}
}
return 0;
}