Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Object and Classes Programming -- Helpful comments is greatly appreciated!! Create an Account class that a bank might use to represent customers' bank accounts.
C++ Object and Classes Programming -- Helpful comments is greatly appreciated!!
Create an Account class that a bank might use to represent customers' bank accounts. Include a data member of type double to represent the account balance. Provide a constructor that receives an initial balance and uses it to initialize the data member. The constructor should validate the initial balance to ensure that it's greater than or equal to 0. If not, set the balance to 0 and display an error message indicating that the initial balance was invalid. Provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account's balance. If it does, the balance should be left unchanged and the function should print a message indicating "Debit amount exceeded account balance." Member function getBalance should returrn the current balance. Create a program that creates two Account objects and tests the member functions of class Account
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started