Using C++ language to create the program. Create an Account class that a bank mi
ID: 3637886 • Letter: U
Question
Using C++ language to create the program.
Create an Account class that a bank might use to represent customers' bank accounts. Include a data member of type int 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 zero. If not, set the balance to 0 and display 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; member function getBalnce should return the current balance. Create a program that creates two Account objects and tests the member functions of class Account.
I HELP WITH THIS QUESTION AS SOON AS POSSIBLE!! PLEASE, PLEASE.