Answered step by step
Verified Expert Solution
Link Copied!

Question

00
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.,2018, p.225) Programming Challenges, 17.Personal Best, Chapter 4.
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 2.0 and 5.0 for the heights.
Design a class MeterCentimeter that holds two attributes:
Declare one attribute named meter of integer datatype.
Declare one attribute named centimeter of integer datatype.
The class should define the relational operators.
Design a class Vault that holds two attributes:
Declare one attribute named height of MeterCentimeter class data type.
Declare one attribute named date of Date class data type.
Implement your code's Constructors, Destructor, Copy Constructor, Mutators, and Accessor functions.
Overload operators in your classes.
Define in the driver program three objects of Valult datatype, and sorted them.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions