CJCoding With Joseph
15per day

Money + Money (operator+)

You are building a simple Money class for prices in a store.

Create a class Money that stores an amount in cents (int).

Requirements:
1) A constructor Money(int cents)
2) int getCents() const
3) Overload operator+ so you can add two Money objects and return a NEW Money

Do NOT write a main function.

Expected Output:

15.35
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.