Question: Write a complete function that returns the minimum number of the three provided as input parameters. It should be used as follows: int main() {

Write a complete function that returns the minimum number of the three provided as input parameters. It should be used as follows:

int main() {

cout << findMin(4, 2, 6) << endl;

cout << findMin(9, 12, 11) << endl;

cout << findMin(5, 3, 2) << endl;

cout << findMin(4, 4, 4) << endl;

cout << findMin(3, 4, 4) << endl;

cout << findMin(6, 4, 6) << endl;

}

The output of this program would be:

2

9

2

4

3

4

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!