Create a function that accepts four double values as parameters. These four double values should NOT modify the related values in main. The function should return the minimum of the four values, maximum of the four values, and average of the four values. Hint: Remember pass-by-reference to return multiple values – your function should have seven parameters and a return type of void. Pass-byreference should be used only with variables that it is necessary for.
Test Cases:
Test Case 1:
Please enter four numbers:
Number 1: <4.6>
Number 2: <3.7>
Number 3: <-1.7>
Number 4: <-7.8>
Minimum is -7.8
Maximum is 4.6
Average is -0.3
Test Case 2:
Please enter four numbers:
Number 1: <-7.8>
Number 2: <3.7>
Number 3: <-1.7>
Number 4: <4.6>
Minimum is -7.8
Maximum is 4.6
Average is -0.3
Test Case 3:
Please enter four numbers:
Number 1: <5.3>
Number 2: <5.3>
Number 3: <5.3>
Number 4: <5.3>
Minimum is 5.3
Maximum is 5.3
Average is 5.3
Only logged in customers who have purchased this product may leave a review.

![[SOLVED] Cs150 – lab 20](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[SOLVED] Cs150 – create a program that asks the user to enter two integer numbers, then tells the user: the sum of the numbers, the difference of the numbers (first minus second), the product of the numbers, and the quotient of the numbers with remainder. each of these should be output as a separate line and include the equation. sample output:](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.