hi
can someone show me how do i print out which array entered is the lowest not the number entered
thankspublic static double lowest( double[] rain) { double lowest = rain[0]; for (int i=0;i<rain.length;i = i + 1) { if(rain[i]< lowest) lowest = rain[i]; } return lowest; }