Define the class with the name bankaccount to store a ban


Assignment

Indent code and insert comments to document your program. Program must be implemented and run as instructed.

Source file and executable are placed in a folder.

Define the class with the name BankAccount to store a ban customer's account number and balance. Suppose that account number is of type int, and balance is of type double. Your class should, at least, provide the following operations: set the account number, retrieve the account number, retrieve the balance, deposit and withdraw money, and print account information. Add appropriate constructors. Create a default constructor and a constructor that takes the balance.

Use a static data member to generate a unique account number.

Capitalize the first letter of the derived class names. Every bank offers a checking account. Derive the class checkingAccount from the class bankAccount. This class inherits members to store the account number and the balance from the base class. A customer with a checking account typically receives interest, maintains a minimum balance, and pays service charges if the balance falls below the minimum balance. Add member variables to store this additional information. In addition to the operations inherited from the base class, this class should provide the following operations: set interest rate, retrieve interest rate, set minimum balance, retrieve minimum balance, set service charges, retrieve service charges, post interest, verify if the balance is less than the minimum balance, write a check, withdraw (override the method of the base class), and print account information. Add appropriate constructors.

Every bank offers a savings account. Derive the class savingsAccount from the class bankAccount (designed in part(a)). This class inherits members to store the account number and the balance from the base class. A customer with a savings account typically receives interest, makes deposits, and withdraws money. In addition to the operations inherited from the base class, this class should provide the following operations: set interest rate, retrieve interest rate, post interest, withdraw (override the method of the base class), and print account information. Add appropriate constructors.

Solution Preview :

Prepared by a verified Expert
Programming Languages: Define the class with the name bankaccount to store a ban
Reference No:- TGS01724514

Now Priced at $40 (50% Discount)

Recommended (92%)

Rated (4.4/5)