Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

+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

image text in transcribed
image text in transcribed
+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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Databases With PostgreSQL From Novice To Professional

Authors: Richard Stones, Neil Matthew

2nd Edition

1590594789, 978-1590594780

More Books

Students also viewed these Databases questions

Question

Finding and scheduling appointments with new prospective clients.

Answered: 1 week ago