/***************************************************************************** * Outputs Pathagorean Triples * * Written: November 30, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Ronald Roberts //30NOV01 //Program 52 #include #include #include int main() { for (int a=1; a<=70; a++) { for (int b=a; b<=70; b++) { for (int c=b; c<=70; c++) { if (pow(a, 2)+pow(b, 2)==pow(c, 2)) { cout<