C++ Object-Oriented Programming: Bank Account Class
Write a C++ program to implement a class called BankAccount that has private member variables for account number and balance. Include member functions to deposit and withdraw money from the account.
Sample Solution:
C Code:
Sample Output:
A/c. No.SB-123 Balance: 1000 Deposit Amount: 1500 Deposit successful. Current balance: 2500 Withdrawl Amount: 750 Withdrawal successful. Current balance: 1750 Attempt to withdrawl Amount: 1800 Insufficient balance. Cannot withdraw.
Explanation:
In the above exercise,
- The BankAccount class represents a bank account with private member variables accountNumber and balance.
- The constructor initializes the accountNumber and balance member variables.
- The deposit() member function takes a parameter amount and adds it to the current balance. It then displays the updated balance.
- The withdraw() member function takes a parameter amount and checks if it is less than or equal to the current balance. If so, it subtracts the amount from the balance and displays the updated balance. If the amount is greater than the balance, it displays an insufficient balance message.
Flowchart:


CPP Code Editor:
Contribute your code and comments through Disqus.
Previous C++ Exercise: Car class.
Next C++ Exercise: Triangle classification.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics