Write the definition of a class Counter containing:
a. An instance variable named counter of type int An instance variable named limit of type int.
b. A constructor that takes two int arguments and assigns the first one to counter and the second one to limit
c. A method named increment. It does not take parameters or return a value; if the instance variable counter is less than limit, increment just adds one to the instance variable counter.
d. A method named decrement. It also does not take parameters or return a value; if counter is greater than zero, it just subtracts one from the counter.
e. A method named getValue that returns the value of the instance variable counter.
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write the definition of a class Counter containing: a. An instance variable named counter of type int An instance variable named limit of ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » Write the definition of a class Counter containing: a. An instance variable named counter of type int An instance variable named limit of type int. b.