Ex 5.15 - Hypotenuse
/********************************************************
** given the 2 sides of a right triangle, this function
** returns the length of the hypotenuse
***********************************************************/
double Hypotenuse (double side1, double side2)
side3 = sqrt (side1 * side1 + side2 * side2);