Here are some corrections:
// blah blah blah code
cout << "Please enter initial balance: ";
cin >> acctbalance;
// add the do for the while!!!
do
{
cout << "What do you wish to do?" << endl;
cout << "D Deposit Money" << endl;
cout << "W Withdraw Money" << endl;
cout << "B Display Balance" << endl;
cout << "Q Quit" << endl;
cin >> choices;
switch (choices)
{
case 'D':
case 'd':
{
cout << "Enter amount to be deposited: "<< endl;
//cout << deposit; // wrong
cin >> deposit; // add this!!!
// blah blah blah
case 'W':
case 'w':
{
cout << "Please enter amount to withdraw " << endl;
cout << "Value must be multiple of 20" << endl;
cin >> withdraw; // add this!!!
// blah blah blah
case 'Q':
case 'q':
{
cout << "Thank for using our services have a nice day!" << endl;
break;
}
}
} while (choices != 'q' && choices != 'Q'); // change ! = to !=
// blah blah blah