/***************************************************************************** * Determines if three lengths from a triangle. * * Inputed: a, b, c (three integer lengths) * * Outputed: (A statement telling wheither they form a triangle or not) * * Written: October 1, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 16 //01OCT01 #include #include #include int main() { int a=0, b=0, c=0, a1=0, b1=0, c1=0, x=0, y=0; cout<<"Please enter three integers:"<>a>>b>>c; cout<<"Please enter a second set of three integers:"<>a1>>b1>>c1; if(pow(a, 2)+pow(b, 2)==pow(c, 2) || pow(a, 2)+pow(c, 2)==pow(b, 2) || pow(b, 2)+pow(c, 2)==pow(a, 2)) { cout<