1 2 3 4 5 6 7 8 9 | for ( int counter = 1 ; counter < temp.length; counter++) { if (temp[counter] < low) { low = temp[counter]; } } System.out.println( "The lowest Temperature is: " + low); |

