C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

STLを使用したC++の配列製品


これは、配列製品を見つけるためのC++プログラムの例です。

アルゴリズム

Begin
   Initialize the values of array.
   Call used defined function accumulate to return the product of array.
   Print the solution.
End.

サンプルコード

#include <iostream>
#include <numeric>
using namespace std;
int ProductOfArray(int p[], int n) {
   return accumulate(p, p + n, 1, multiplies<int>());
}
int main() {
   int m[] = {6,7 };
   int n = sizeof(m) / sizeof(m[0]);
   cout <<"Product of the Array is:" <<ProductOfArray(m, n);
}

出力

Product of the Array is:42

  1. C++の配列内のすべての素数の積

    いくつかの要素を持つ整数配列arr[]が与えられた場合、タスクはその数のすべての素数の積を見つけることです。 素数は、1で割った数、またはその数自体です。または、素数は、1とその数自体を除いて他の数で割り切れない数です。 1、2、3、5、7、11など 与えられた配列の解を見つける必要があります- 入力 −arr [] ={11、20、31、4、5、6、70} 出力 − 1705 説明 −配列の素数は− 11、31、5であり、それらの積は1705 入力 − arr [] ={1、2、3、4、5、6、7} 出力 − 210 説明 −配列の素数は− 1、2、3、5、7

  2. newを使用してC++で2D配列を宣言するにはどうすればよいですか

    動的2D配列は、基本的に配列へのポインターの配列です。これは、寸法が3x4の2D配列の図です。 アルゴリズム Begin    Declare dimension of the array.    Dynamic allocate 2D array a[][] using new.    Fill the array with the elements.    Print the array.    Clear the memory by deleting it. End サンプルコード