cout << "What is the name of the golfer?" << endl;
cin >> name;
cout << "How many games has " << name << " played total?" << endl;
cin >> games;
cout << "How many tosses were there for " << name << " total?" << endl;
cin >> tosses;
cout << "What is the name of the golfer?" << endl;
cin >> name;
cout << "How many games has " << name << " played total?" << endl;
cin >> games;
cout << "How many tosses were there for " << name << " total?" << endl;
cin >> tosses;
cout << "Golfer " << golfer1.getName() << ", ID #" << golfer1.getID() << ", has an average of " << golfer1.getAverage() << "." << endl;
cout << "Golfer " << golfer2.getName() << ", ID #" << golfer2.getID() << ", has an average of " << golfer2.getAverage() << "." << endl;
cout << "Please enter score of new game for Golfer " << golfer1.getName() << "." << endl;
cin >> tosses;
cout << "Please enter score of new game for Golfer " << golfer2.getName() << "." << endl;
cin >> tosses;