Related:
- Find the sum of squares first n natural numbers c++ program
- Write a c++ program to find the sum of two numbers - Best answers
- Sum of squares c++ - Best answers
- Coagula program - Download - Other
- Window washer program - Download - Cleaning and optimization
- Kerbal space program download - Download - Simulation
- End it all program - Download - Cleaning and optimization
- Download program winrar - Download - File decompression
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;
}
.........................................
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;
}
.........................................