Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ผลิตภัณฑ์อาร์เรย์ใน C ++ โดยใช้ STL


นี่คือตัวอย่างโปรแกรม C++ เพื่อค้นหา Array Product

อัลกอริทึม

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