CJCoding With Joseph
15per day

Account Balance Add (operator+ for BankAccount)

You want to combine balances from two accounts into a new summary account.

Create a class BankAccount with:
- private string owner
- private int cents

Requirements:
1) Constructor BankAccount(string owner, int cents)
2) Getters getOwner() const, getCents() const
3) Overload operator+ to return a NEW BankAccount where:
   - owner becomes "owner1&owner2"
   - cents becomes cents1 + cents2

Do NOT write a main function.

Expected Output:

Alex&Bella 150
Jay&Kim 101
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.