Question: PLEASE C++ COMPILE/RUN You need to create three files. The bankAccount.h file, the implementation of the bankAccount Class and the main function to test your
PLEASE C++ COMPILE/RUN

You need to create three files. The bankAccount.h file, the implementation of the bankAccount Class and the main function to test your class.
** PLEASE C++ ONLY ## Define the class bankAccount to implement the basic properties of a bank account. An object of this class should store the following data: Account holder's nane (string), account number (int), account type (string, checking/saving), balance (double), and interest rate (double) (Store int erest rate as a decimal number.) Add appropriate member functions to manipulate an object. Use a static member in the class to autonatically assign account numbers. Also declare an array of 10 components of type bankAccount to process up to 10 customers and write a program to illustrate how to use your class. .The construct or iSet the data (narne, account type, balance, interest rate) ii.Deposit - receives amount of deposit iv.Wit hdraw - receives amount of withdraw v.Get the Interest Rate - returns the interest rate vi.Get Account Number - returns the account number vii.Get the Account Holders Narne -returns the name vii.Get the Account Type returns the account type ix.Get the balance - returns the balance x.Print -nice output of one account and all of its information
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
