Question: I need help writing a program that will do the above in C++ programming language in the most basic way possible. Use the following class

I need help writing a program that will do the above in C++ programming language in the most basic way possible.
Use the following class declaration class BankAccount private: string name; double balance; public: BankAccount) BankAccount(string n, double b); double getBalance); bool deposit (double amt); bool withdraw(double amt); void showAccountInfo); l: In main) create a demonstration program that lets you manage a single Bank Account. A simple loop that defines and uses a bank account object with a simple menu is adequate. A. Deposit B. Withdrawal C. Show Account Info Q. Quit Your deposit and withdraw member functions should include basic validation (deposit and withdraw amounts should be greater than zero, and withdraw amount should be less than or equal to the balance). The recommended class function implementation for this is to return TRUE if the transaction is valid, and FALSE if it's not. For example the following code in main would make sense- if (deposit(amount)) coutc Success"endl; cout New Balance is "
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
