C ++
 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

  1. シリーズ23+45+75+…..最大N項の合計を求めるC++プログラム

    このチュートリアルでは、与えられたシリーズの合計を見つけるプログラムについて説明します23+45+75+…..最大N項。 このために、Nの値が与えられます。私たちのタスクは、最初の項から始まるすべての項を合計して、与えられた系列の合計を見つけることです。 これを解いた後、級数の合計の式を取得します; Sn =(2n(n + 1)(4n + 17)+ 54n)/ 6 例 #include <iostream> using namespace std; //calculating the sum of the series int calc_sum(int N) { &n

  2. 級数の合計を求めるC++プログラム(1 / a + 2 / a ^ 2 + 3 / a ^3+…+n/ a ^ n)

    このチュートリアルでは、与えられた級数の合計(1 / a + 2 / a ^ 2 + 3 / a ^3+…+n/ a ^ n)を見つけるプログラムについて説明します。 このために、nの値が与えられます。私たちのタスクは、最初の項から始まるすべての項を合計して、与えられた系列の合計を見つけることです。 例 #include <iostream> #include <math.h> using namespace std; //calculating the sum of the series float calc_sum(int a, int n) {   &