import java.io.*; import java.util.*; class TemperatureList { // instance variables Vector V; int size; // constructors public TemperatureList(){ V = new Vector();} // methods public void initialize(FileInput fio){ while (!fio.eof()){ int temp = fio.getInt(); V.add(new Integer(temp)); } size = V.size(); } // find the size of the list public int size(){ return V.size(); } // find the average of the list public double average(){ double sum=0.0; for (int i=0;i num) count++; return count; } // finds the number of days below a given temperature public int daysBelow(double num){ int count=0; for (int i=0;i