Another way to get the largest of three numbers x, y and z is to compute the larger of x and y, and then to compute the larger of that number and z. Write a definition of largest(x,y,z) that only uses one defining equation, but that uses function max to find the larger of two given numbers.

For this problem, function max(x, y) is available to you.

 

    [Language: Cinnameg  Kind: function definition*]

(*You can define more than one function if you put a semicolon between definitions (but not between cases of one definition). Be sure to define a function before you use it.)