/** 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.printf("Largest value is %.1f", s.findMax()); System.out.printf("Smallest value is %.1f", s.findMin()); System.out.printf("Median value is %.1f", s.findMedian()); } }