Question
Using c++ create a library with following functions (prototypes are given along with a description): - void increasing (double& A, double& B, double& C); //Arranges
Using c++ create a library with following functions (prototypes are given along with a description):
- void increasing (double& A, double& B, double& C); //Arranges A, B, and C in increasing order.
- void decreasing (double& A, double& B, double& C); //Arranges A, B, and C in decreasing order.
- void mmm (double& A, double& B, double& C); //Replaces A with the minimum of A, B, and C; replaces B with the average of A, B, and C; replaces C with the maximum of A, B, and C.
Use the library in a program where the user is asked to enter three numbers. The program calls all three functions above and outputs the new values of A, B, and C for each case. Do not just output numbers. Display a message with each result.
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