Here is the simple program for printing sum of square using For Loop in C++.
#include<iostream> using namespace std; int main() { int i,j=0,n; cout<<"\nEnter the Limit:"; cin>>n; for(i=1;i<=n;i++) { j=i*i+j; } cout<<"\nTotal value is:"<<j; return 0; }To download raw file Click Here
Enter the Limit:4 Total value is:30
Learn All in Tamil © Designed & Developed By Tutor Joes