Question: Do Practice Exercise E3.2 in the text (using the tally counter from 2, above). You will add the new method to the Counter class. Update
Do Practice Exercise E3.2 in the text (using the tally counter from 2, above). You will add the new method to the Counter class. Update the CounterTester to test the new method.
E3.2---> Simulate a tally counter that can be used to admit a limited number of people. First, the limit is set with a call public void setLimit(int maximum). If the click button is clicked more often than the limit, it has no effect (Hint: The call Math.min(n, limit) returns n if n is less than limit, and limit otherwise.)
TALLY COUNTER GIVEN TO US
counter

Counter Tester

* Simulate a tally counter device *author Russ Hare * version Spring 2018 public class Counter // instance variables private int count; / Constructors *Initialize tally count to zero public Counter ) count = 0; * Initialize tally count to input value public Counter (int aCount) count-aCount; // Methods Add 1 to the tally count public void click) countcount1; *Return the tally count public int getCount ) return count *Reset the tally count to zero public void reset ) count-0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
