#include using namespace std; #define NUM_ATHLETES 8 #define NUM_LAPS 4 // Functions for question 2. void GetAthleteLapTimes(double athleteLapTimes[][NUM_LAPS], int numAthletes, int numLaps); void DisplayAthleteLapTimes(const double athleteLapTimes[][NUM_LAPS], int numAthletes, int numLaps); // Functions for question 3. void DisplayFinishingTimes(const double athleteLapTimes[][NUM_LAPS], int numAthletes, int numLaps); // Functions for question 4. void CalculateFinishingTimes(double finishingTimes[], const double athleteLapTimes[][NUM_LAPS], int numAthletes, int numLaps); void SortAndDisplayFinishingTimes(double finishingTimes[], int numAthletes);