Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Analyze the following problem: ( Retrieve of Gaddis, T . , 2 0 1 8 , p . 2 2 5 ) Programming Challenges, 1
Analyze the following problem:
Retrieve of Gaddis, T p Programming Challenges, Personal Best, Chapter
Personal Best
Write a program that asks for the name of a pole vaulter and the dates and vault heights in meters of the athletes three best vaults. It should then report, in order of height best first the date on which each vault was made and its height.
Input Validation: Only accept values between and for the heights.
Use the Vault, MeterCentimeter and Date classes define in Assignment incorporate MyString class discussed in this module and design a new class named Athlete with two attributes:
The first attribute is named name of MyString datatype
The second attribute is called myVaults dynamically memory allocated to stores de n objects of Vault Class datatype.
The class has a member function that sorts by the vault heights. Implement the Selection sort Algorithm.
Implement your code's Constructors, Destructor, Copy Constructor, Mutators, and Accessor functions and overload operators in your classes.
Ask the user the number of vaults. And print the three best vaults.
The solution must contain the following:
Source code.
Separate class specifications from implementation.
Program output.
Descriptive Tables.
UML diagrams.
CRC cards. Language is C
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started