This document describes a lab assignment to create a C++ program that scores divers. The program will:
1. Input a diver's name, city, and 5 judge scores between 0-10 as well as a degree of difficulty from 1.00-1.67.
2. Calculate the diver's overall score by removing the highest and lowest scores, adding the remaining scores, dividing by 3, and multiplying by the degree of difficulty.
3. Display the diver's information and overall score.
4. Allow the user to input information for multiple divers and display a summary with the total number of divers and their average overall score. The program should use nested loops, with an outer loop to process multiple divers