This C++ program calculates the sum of the squares of numbers from 1 to a given limit n and prints the total value. Here is how the program works:
#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 | Privacy Policy | Terms & Conditions