You can compute the largest of three numbers x, y and z by computing 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.

 

    [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.)