Question: it should like the code below but i wonder what is the full code of all three files. This assignment serves two purposes 1. To
This assignment serves two purposes 1. To help you learn about C++ classes. 2. To provide a starting point for Assignment 3 Instructions Translate the Counter class (shown below) and the test program from Java to C++. Name the header file Counter.h and the implementation file Counter.cpp. Name the test program file CounterDemo.cpp This class models a tally counter This class demonstrates the Counter class. public class Counter private int value; public class CounterDemo public static void main(Stringl] args)i Counter tally new Counter(): tally.count(): tally.count(: int result tally.getValue(); System.out.println( Value:"result); tally.count(); tally.count() result-tally.getValue(): System.out.printin(" Value:"+result); Gets the current value of this counter @return the current value public int getValue) return value Advances the value of this counter by 1 public void count) value value 1; Resets the value of this counter to O public void reset) value 0; Upload Counter.h, Counter.cpp, and CounterDemo.cpp to the assignment page
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
