CJCoding With Joseph
15per day

Create a Counter Class

Create a class named Counter with one private member: int count.

Requirements:
1. Make a default constructor Counter() that sets count to 0.
2. Create a public method getCount() that returns count.

IMPORTANT: Do NOT write a main method for this question. Your class will be tested with a hidden Main class that creates a Counter object and prints getCount().

Expected Output:
0

Expected Output:

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