Question: +Programming Assignment W7 ATM Machine Due by Jul 23 This assignment asks you to implement ATM simulator which should create bank account class and also
+Programming Assignment W7 ATM Machine Due by Jul 23 This assignment asks you to implement ATM simulator which should create bank account class and also process Login process before using ATM system. 1) Create a bank account with a user id and password. a. User enters id and password through the screen b. System reads both information and create an account creating 10 bank instances, each account information will be used for login. 2) After If login was successful, the user will be able to do the following 1) Withdraw money. 2) Deposit money. 3) Request balance. If login was not successful (for example the id or password did not match), then the user will be taken back to the introduction menu. This project ill require you create a class named Account and then complete the code. Whenever deposit or withdraw, you have to check validation. Numeric amount should be displayed with 2 decimal places /Account.cpp Class Account Public: Account (string, string, double): bool login(string, string) bool deposit(double): bool withdraw(double); void requestBalance(); private: string id; string password; double balance; IIdriver.cpp int main(O //Create five account with id, pwd, and initial deposit amount using array //WRITE A WELCOME MESSAGE HERE //Ask user to login //If login is correct, do d Deposit Money W-Withdraw Money r .Request Balance q -Quit ) while(menuq')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
