โ Back to Classes
Question 31
Counter Increment
Counter Increment
Create a class Counter with a private int count. Requirements: 1. Default constructor sets count to 0 2. increment(int value) adds value to count 3. getCount() returns count and must be const Do NOT write a main function.
Expected Output:
5
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.