<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//simple counter class
public class Tally {
  int tally;

  public Tally() {
    tally = 0;
  }

  public Tally(int num) {
    //start tally at 'num'
    tally = num;
  }

  public void incrTally(int num) {
    tally += num;
  }

  public void decrTally(int num) {
    tally -= num;
  }

  public int getTally() {
    return(tally); 
  }
}
</pre></body></html>