// Name : Matthew Reeves // This is a program to review basic Java functions import java.util.Scanner; public class SimpleList { Scanner input=new Scanner (System.in); final private int ARRAY_LENGTH=10; //initializing variables private int Count; private float Sum; private float Average; private float Large; private float Small; private float List[]; public SimpleList() //Constructor { System.out.println("\nWelcome to the SimpleList class!"); Sum=0; List=new float[ARRAY_LENGTH]; } public void getData() //method to determine number of inputs, and fill array with values { do //allows user to decide how many values in the array { System.out.print("\nPlease enter the number of values you would like to input (between 1 and 10): "); Count = input.nextInt(); System.out.println(""); if (Count<1 || Count>ARRAY_LENGTH) //data validation for value of Count { System.out.println("I'm sorry, the total number of values MUST be between 1 and 10 inclusive."); } }while(Count<1 || Count>ARRAY_LENGTH); for (int tally=0;tallyLarge) { Large=List[tally]; } } } public void displayResults() //method to print to screen values of array, and results of process data method { System.out.println(""); for (int tally=0;tally