/** Driver.java -- main method for stats program. Choose one of the * 2 implementations (array or ArrayList) for the scores. */ import java.io.*; public class Driver { public static void main(String [] args) throws IOException { ScoreArray s = new ScoreArray(); System.out.println("Largest value is " + s.findMax()); System.out.println("Smallest value is " + s.findMin()); System.out.println("Median value is " + s.findMedian()); } }