C++ program computing sum of squares of two

Closed
kajinti - 17 May 2010 à 02:23
 don - 19 Sep 2010 à 10:25
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;
}
.........................................