CJCoding With Joseph
15per day

Set and Get Balance

Create a class Wallet with one private double field named balance.

Requirements:
1. Default constructor sets balance to 0.0
2. setBalance(double) updates balance
3. getBalance() returns balance and must be const

Do NOT write a main function.

Expected Output:

25.75
Topics:
Classes
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.