Program start: Create a vector to hold totals (total passengers, total distance traveled, etc.) Get file location from user (while ensuring the location is valid) Open the file Print table headers For every line of data in the file: Extract the numbers from the line and place them in a vector Do the required operations (calculate averages, etc.) and push them onto the back of the vector Print out the data for each line Close the file Print the totals and any averages calculated from them (with appropriate labels and formatting) Program end