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

STL을 사용하는 C++의 배열 곱

<시간/>

Array Product를 구하는 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