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

จะค้นหาผลรวมขององค์ประกอบของ Array โดยใช้ STL ใน C ++ ได้อย่างไร


เราจะมาดูวิธีการหาผลรวมขององค์ประกอบทั้งหมดของอาร์เรย์ ดังนั้นหากอาร์เรย์เป็นเช่น [12, 45, 74, 32, 66, 96, 21, 32, 27] ผลรวมจะเป็น:405 ดังนั้นที่นี่เราต้องใช้ฟังก์ชันสะสม () เพื่อแก้ปัญหานี้ คำอธิบายฟังก์ชันนี้มีอยู่ในไฟล์ส่วนหัว <ตัวเลข>

ตัวอย่าง

#include<iostream>
#include<numeric>
using namespace std;
int main() {
   int arr[] = {12, 45, 74, 32, 66, 96, 21, 32, 27};
   int n = sizeof(arr) / sizeof(arr[0]);
   cout << "Array is like: ";
   for (int i = 0; i < n; i++)
   cout << arr[i] << " ";
   cout << "\nSum of all elements: " << accumulate(arr, arr + n, 0);
}

ผลลัพธ์

Array is like: 12 45 74 32 66 96 21 32 27
Sum of all elements: 405