Write an two class application that has a one-dimensional array as a data member
ID: 3653181 • Letter: W
Question
Write an two class application that has a one-dimensional array as a data member. The array stores temperatures for any given week. Provide constructors for instantiating the class and methods to return the highest temperature, lowest temperature, average temperature, and the average temperature excluding the lowest temperature. Provide a method that accepts as an argument a temperature and returns the number of days the temperatures were below that value. Override the ToString() method to return the temperature range for the given week. Write a second class to test your class. Assume the array stores temperature for each day. Be sure to include a descriptive test case in your second class.Explanation / Answer
import java.util.Scanner; class Temperature { static double[] temp = new double[7]; Temperature(){ } static double highestTemp(double[] t) { double ht; ht=t[0]; for(int i=1;iht){ ht=t[i]; } } return ht; } static double lowestTemp(double[] t) { double lt; lt=t[0]; for(int i=1;i