#include #include #include "AthleteDeclarations.h" using namespace std; #include "stdafx.h" int main() { double athleteTimes[NUM_ATHLETES][NUM_LAPS]; // Question 2. GetAthleteLapTimes(athleteTimes, NUM_ATHLETES, NUM_LAPS); DisplayAthleteLapTimes(athleteTimes, NUM_ATHLETES, NUM_LAPS); // Question 3. DisplayFinishingTimes(athleteTimes, NUM_ATHLETES, NUM_LAPS); // Question 4. double finishingTimes[NUM_ATHLETES]; CalculateFinishingTimes(finishingTimes, athleteTimes, NUM_ATHLETES, NUM_LAPS); SortAndDisplayFinishingTimes(finishingTimes, NUM_ATHLETES); return 0; }