CJCoding With Joseph

Money Normalizer Class

Create a class Money whose constructor takes dollars and cents but normalizes them so that every 100 cents becomes 1 dollar. A Show() method returns the amount as $D.CC with cents always two digits. Do not write a Main method.

For new Money(1, 150) (that is 150 cents = $1.50 extra) the program prints:
$2.50

Expected Output:

$2.50
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.