You are writing an object that is a list of numbers on which you are able to some simple mathematical computations. Please note that all of the indices that will be passed to you will be valid; you don't have to write error checking code. However, you will have to handle the case where you create a fresh object and call the appropriate methods (e.g. sumOfAllOddNumbers).
The object to implement this is referred to as SumFun and consists of the following public methods:
public SumFun()
public void addToList(int i) - Add an integer to our list of integers.
public int sumOfAllEvenNumbers() - Returns the sum of all even numbers in the list.
public int sumOfEvenNumbers(int start, int end) - Returns the sum of all even numbers from the start index (given by start) and the end index (given by end). Note that it includes both the start and end indices.
public int sumOfAllOddNumbers() - Returns the sum of all odd numbers in the list.
public int sumOfOddNumbers(int start, int end) - Returns the sum of all even numbers from the start index (given by start) and the end index (given by end). Note that it includes both the start and end indices.
public int sumOfOddDigitsForItem(int itemIndex) - Given an index into the list you extract the number and then add all of the odd digits. For example, if you have the number 1234 the sum of the odd digits is 1 + 3 = 4.
Your Main.java should contain code to test your SumFun object. Load multiple values and check to make sure that the values match the expected values. Use looping to load and test your object.