Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

급수의 합을 구하는 C++ 프로그램 (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + … + (n*n)

<시간/>

이 튜토리얼에서는 주어진 급수 (1*1) + (2*2) + (3*3) + (4*4) + (5*5) + … + (n*n).

이를 위해 우리는 n의 값이 주어질 것이고 우리의 임무는 주어진 급수의 합을 찾기 위해 첫 번째 항부터 시작하여 모든 항을 더하는 것입니다.

예시

#include <iostream>
using namespace std;
//calculating the sum of the series
int calc_sum(int n) {
   int i;
   int sum = 0;
   for (i = 1; i <= n; i++)
   sum += (i * i);
   return sum;
}
int main() {
   int n = 7;
   int res = calc_sum(n);
   cout << res << endl;
   return 0;
}

출력

140