/***************************************************************************** * Outputs all numbers between 1000 and 9900 that the sum of the first * * two digit number and the second two digit number squared, equals the * * number * * Inputed: N/A * * Outputed: (see above). * * Written: November 15, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Ronald Roberts //Program #46 //15NOV01 #include #include #include int main(){ int i; double num1=0, num2=0; cout<<"All four digit numbers with this property: "; for (i=1000; i<=9900; i++) { num1=i/100; num2=i%100; if (pow((num1+num2), 2)==i) { cout<