What values are assigned?
double[] temps = new double[5]; //
Allocates array
int m;
for (m = 0; m < temps.length; m++)
  temps[m] = 100.0 + m * 0.2;
What is length?
temps[0]    temps[1]    temps[2]    temps[3]    temps[4]