โ Back to Classes
Question 451
Money Normalizer Class
Money Normalizer Class
Create a classMoneywhose constructor takes dollars and cents but normalizes them so that every 100 cents becomes 1 dollar. AShow()method returns the amount as$D.CCwith cents always two digits. Do not write aMainmethod. Fornew 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.