Write a class named Accumulator containing: An instance variable named sum 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 of sum is increased by the value of the parameter.
LANGUAGE: JAVA
CHALLENGE:
Write a class named Accumulator containing:
An instance variable named sum 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 of sum is increased by the value of the parameter.
SOLUTION:
public class Accumulator{ private int sum = 0; public int getSum(){ return sum; } public void add(int number){ sum += number; } }