/***************************************************************************** * Calculates the length of the hypotenuse of a right triangle. * * Inputed: a (length of a), b (length of b) * * Outputed: c (length of the hypotenuse) [=sqrt(pow(a, 2)+pow(b,2)] * * Written: September 14, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 4 //14SEP01 #include #include int main() { cout<<"This Program Is Used To Calculate The Length Of The Hypotenuse."<>a; cout<<"Enter The B Value Of The Triangle:"<>b; c=sqrt(pow(a, 2)+pow(b, 2)); cout<<"The Length Of the Hypotenuse Is:"<