C++ Homework, programming homework help
Other This class mimics holding bank data and info. The bank holds information regarding bank accounts.The following two classes are used as shown. This class design must not be changed in any way. You should copy and paste this code before your main: class Account{public: char acctType; double balance; string status; }; class BankHolder{public: vector<Account> […]
