C++ program computing sum of squares of two

Closed
kajinti - May 17, 2010 at 02:23 AM
 don - Sep 19, 2010 at 10:25 AM
Hello,



Related:

1 response

#include <iostream>
using namespace std;
int main()
{
int i,sum; // variables
sum = 0; // initialize sum
/* recursive addition of squares */
for (i = 1; I <= 30; i++)
sum = sum + (i * i);
cout << sum <<" is the sum of the first 30 squares."
<< endl;
return 0;
}
.........................................
10