/* Main.java - usually I call this Driver.java but that sounds * too much like Diver.java. haha */ import java.io.FileNotFoundException; public class Main { public static void main(String [] args) throws FileNotFoundException { Diver d = new Diver(); System.out.printf("The average score is %.2f\n", d.findAverage()); System.out.printf("If you remove hi & low: %.2f\n", d.findAverageWithoutHiLo()); System.out.printf("If NK judge is removed: %.2f\n", d.findAverageWithout(3)); } }