Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please can you help me solve this c++ question its due in less than an hour please and thank you. the second problems as well

please can you help me solve this c++ question its due in less than an hour please and thank you. the second problems as well image text in transcribed
image text in transcribed
PROBLEM 1 Gaddis Chapter "Exceptions and Templates" Programming Challenge "Min/Max Templates (#3 in the early objects") Please call your functions myMin and myMax for this problem. You can do all your work in a file called min Max.cpp that houses your main and the functions. PROBLEM 2 Create a class template Pair that houses 2 items of datatype T. Whatever datatype stored needs to implement the operators. There should be two private data attributes called item1 and item2. There should be the following public methods. A 2 argument constructor. A method getMax that returns the larger of the two stored items. A method getMin that returns the smaller of the two stored items. A method setItems that takes in two constant items by reference and sets item1 and item2 to them. A method getItem1 that returns item1. A method getItem2 that returns item2. Make a appropriate methods const so they don't alter itemi or item2 if not needed. You should have a Pair.h and Pair.cpp file. Create a pairTest.cpp file with a main() that creates two pairs, one that houses ints an one that houses strings. Test all the methods for these two Pairs in your main and display the results. 3. Min/Max Templates Write templates for the two functions min and max. min should accept two arguments and return the value of the argument that is the lesser of the two. max should accept two arguments and return the value of the argument that is the greater of the two. Design a simple driver program that demonstrates the templates with various data types

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Records And Database Management

Authors: Jeffrey R Stewart Ed D, Judith S Greene, Judith A Hickey

4th Edition

0070614741, 9780070614741

More Books

Students also viewed these Databases questions