CJCoding With Joseph
15per day

Account With Balance

Create a class named Account with one private member: double balance.

Requirements:
1. Create a constructor Account(double balance) that sets the field.
2. Create a public method getBalance() that returns balance.

IMPORTANT: Do NOT write a main method. A hidden Main will create new Account(25.5) and print getBalance().

Expected Output:
25.5

Expected Output:

25.5
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.