There is text file with information held on it, with average rainfall per month.
1914,50.9,87,115.8,32.3,47.1,56.6,97.1,63.9,48.1,62.4,110.3,190.8
1914 being the year and the average rainfall follow it.
The year goes up to 2008.
I created a enumeration which has Jan-Dec (months)
And I need to create a class which will store the average rainfall for just one year (array) by using a getter and average rainfall for a specific month.
And another class which is used to store the rainfall data for each available year
(using an array of RainfallYear objects). As well as a method which will return an array of the available years, this class also provides methods to return the mean rainfall for a given year, as well as a method which will calculate the mean rainfall for just a particular month over all available years.
So any pointers is helpful! I've just finished the enumeration