import java.io.*; public class GolfFileDrv { public static void main(String[] args) throws FileNotFoundException{ // remember you need to include this ^ when you read from files TournamentScores tourney = new TournamentScores("scores.dat"); System.out.println(tourney); // the above creates a tournament and prints it out. // once you get that to work correctly, you may comment out the above println, // and add three more print statements: // Print the name of the tournament. // Print the average score. // Print the top three golfers. } //main }