Counter

Report a typo

You are given a class named Counter. Write two instance methods:

  • inc that increases the value of the field current by one;
  • getCurrent that returns the current value;

Do not make the field and methods private.

Write a program in Java 17
class Counter {

int current;

// write your methods here
}
___

Create a free account to access the full topic