Balance There will be two types of account saving and current. In saving account there will 5% of interest added to the balance amount of that customer per year (on the basis of account age). While in current account there will be no interest. There should be the following member functions getBalance(): return the current customer account balance Deposit (): which take a parameter amount and add it to the balance of the customer. Amount must be greater than 0 and should not be negative.
Withe C++ write the following program
Create a class BankSyS which hold information regarding customer.
customerAcct
customeName
accouTtype (saving / current)
accountAge
Balance
There will be two types of account saving and current. In saving account there will 5% of interest added to the balance amount of that customer per year (on the basis of account age). While in current account there will be no interest.
There should be the following member functions
getBalance(): return the current customer account balance
Deposit (): which take a parameter amount and add it to the balance of the customer. Amount must be greater than 0 and should not be negative.
setCustomerInfo(): Input Customer Information.
getCustomerInfo(): show Customer Information in Tabular Form.
Withdraw(): withdraw member function will withdraw the amount from the customer account but withdraw amount must not be greater than the current balance.
Customer balance should be initialized at the time of customer account creation/opening. The account opening limit is 5000pkr Minimum
To the run the
1. Add Customer Information
2. Deposit Amount
3. Withdraw Amount.
4. Display Customer Information.
5. Check Customer Balance
Step by step
Solved in 2 steps