/***************************************************************************** * Displays num+i numbers and the sum of them. * * Inputed: N/A * * Outputed: num, sum. * * Written: November 1, 2001 * * By: Ronald Roberts * *****************************************************************************/ //Program 37 //01NOV01 #include #include #include int main() { int i=0; double sum=0; double num=0; cout<<"The numbers are: "; for (i=1; i<=8; i++) { num=num+i; cout<