Write a class named Averager containing: An instance variable named sum of type integer , initialized to 0. An instance variable named count of type integer , initialized to 0.

java

LANGUAGE: JAVA CHALLENGE: Write a class named Averager containing: An instance variable named sum of type integer , initialized to 0. An instance variable named count of type integer , initialized to 0. A method named getSum that returns the value of sum . A method named add that accepts an integer parameter . The value…

Read More