Question: In C + + : Write a function MaxMagnitude with two integer input parameters that returns the largest magnitude value. Use the function in a

In C++: Write a function MaxMagnitude with two integer input parameters that returns the largest magnitude value. Use the function in a program that takes two integer inputs, and outputs the largest magnitude value.
Ex: If the inputs are 57, the function returns:
7
Ex: If the inputs are -8-2, the function returns:
-8
Note: The function does not just return the largest value, which for -8-2 would be -2. Though not necessary, you may use the absolute-value built-in math function.
tour program must define and call a function:
int MaxMagnitude(int userval1, int userval2)
 In C++: Write a function MaxMagnitude with two integer input parameters

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!