/* ********************** * * YOUR NAME! * * *********************/ import java.util.Random; public class GolfDrv { public static void main(String[] args) { // Use this class to create GolferScore objects and work with them. // Here's an array of pars you can use if you like. int[] pars = new int[] {3,4,4,4,3,4,4,3,4,5,4,4,5,4,3,5,4,5}; // Create a GolferScore object // Print it out // Set scores for the first seven holes. // Print out your GolferScore object again. Do the scores look correct? // Call all the methods in your GolferScore class and print out results // to see if you are getting correct output. You don't have to do pass/fail // tests (although you could.) You can instead visually inspect the output // to see if it is correct. Turn in this driver as well as your // GolferScore.java file. } //main }