Hey guys,
So I have this atm machine assignment. Everything is working great, except I don't know how to declare char. I want to be able to choose between a, b, c & d. I am still a beginner we only covered 1 chapter so far in class so I'm not allowed to use anything complicated. Anyone any ideas ? Thank you.
#include <iostream>
using namespace std;
// we will start writing the program
void main()
{
// first we need to welcome the atm user
cout <<"Welcome, and thank you for using the new NDU ATM machine !" <<endl <<endl;
// now we need to show him the options in the menu
cout <<"Choose one of the following:" <<endl <<endl;
cout <<"To enter the menu type : 1" <<endl;
cout <<"To exit type : 2" <<endl;
int menu;
cin >>menu;
if (menu>2)
cout <<"404 error not found ..." <<endl;
if (menu<1)
cout <<"404 error not found ..." <<endl;
if (menu==2)
cout <<"Thank you for your visit" <<endl;
if (menu==1)
{cout <<"Enter your code:" <<endl <<endl;
int user_code;
cin >>user_code;
if (user_code<1000)
cout <<"Code error" <<endl; else
if (user_code>9999)
cout <<"Code error" <<endl; else
if (user_code%2==1)
cout <<"Code error" <<endl;
else
{cout <<"Choose one of the following:" <<endl <<endl <<"a. Winthdraw 200$" <<endl <<"b. Deposit 200$" <<endl <<"c. Request Balance" <<endl <<"d. Exit" <<endl;
char menu_selection, a, b, c, d;
cin >>menu_selection;
if (menu_selection==a)
cout <<" You just withdrew 200$ from your account and your new balance is 2350.55$" <<endl;
if (menu_selection==b)
cout <<" 200$ have successfully been added to your account and your new balance is 2750.55$" <<endl;
if (menu_selection==c)
cout <<"Your actual balance is 2550.55$" <<endl;
if (menu_selection==d)
cout <<"Thank you for using the new NDU ATM machine" <<endl;}
}
}