Now what values are printed?
l
final int ARRAY_SIZE = 5;
// Named constant
l
double[] temps;
l
temps = new double[ARRAY_SIZE];
l
int m;
l
. . . . .
l
for (m = temps.length-1; m >= 0; m--)
l
System.out.println(“temps[“ + m + “] = ” + temps[m]);
l
l
temps[0]
temps[1]
temps[2]
temps[3]
temps[4]
100.0
100.2
100.4
100.6
100.8