Question: hello this code will read 3 numbers and I need it to tell me witch is the largest out of the 3 numbers. int find_max(int

hello this code will read 3 numbers and I need it to tell me witch is the largest out of the 3 numbers.
int find_max(int x, int y, int z); Here is your main function (note you must use this main, you aren't allowed to modify it): int main() { int numi, num2, num3, largest; cout > num1 >> num2 >> num3; 1/write the statement that calls find_max() and stores //the value returned in largest cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
