115 User Defined Functions Max Min Numbers Challenge Activity 1151 Max Min Numbers Start W Q43779252
Coral language please.

11.5 User-Defined Functions: Max and min numbers CHALLENGE ACTIVITY 11.5.1: Max and min numbers. Start Write a program whose inputs are three integers, and whose outputs are the largest of the three values and the smallest of the three values. If the input is 7153, the output is: largest: 15 smallest: 3 Your program should define and call two functions: Function LargestNumber(integer numi, integer num2, integer num3) returns integer largestNum Function SmallestNumber(integer numl, integer num2, integer num3) returns integer smallest Num The function LargestNumber should return the largest number of the three input values. The function SmallestNumber should return the smallest number of the three input values. Variables 2 // Your solution goes here Not shown when editing Show transcribed image text 11.5 User-Defined Functions: Max and min numbers CHALLENGE ACTIVITY 11.5.1: Max and min numbers. Start Write a program whose inputs are three integers, and whose outputs are the largest of the three values and the smallest of the three values. If the input is 7153, the output is: largest: 15 smallest: 3 Your program should define and call two functions: Function LargestNumber(integer numi, integer num2, integer num3) returns integer largestNum Function SmallestNumber(integer numl, integer num2, integer num3) returns integer smallest Num The function LargestNumber should return the largest number of the three input values. The function SmallestNumber should return the smallest number of the three input values. Variables 2 // Your solution goes here Not shown when editing
Expert Answer
Answer to 11.5 User-Defined Functions: Max and min numbers CHALLENGE ACTIVITY 11.5.1: Max and min numbers. Start Write a program w…
OR