ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจวิธีค้นหาผลรวมขององค์ประกอบของเวกเตอร์โดยใช้ STL ใน C++
ในการหาผลรวมขององค์ประกอบของเวกเตอร์ที่กำหนด เราจะใช้วิธีสะสม () จากไลบรารี STL
ตัวอย่าง
#include <bits/stdc++.h> using namespace std; int main(){ //defining the vector vector<int> a = { 1, 45, 54, 71, 76, 12 }; cout << "Vector: "; for (int i = 0; i < a.size(); i++) cout << a[i] << " "; cout << endl; //calculating sum of the elements cout << "Sum = "<< accumulate(a.begin(), a.end(), 0); return 0; }
ผลลัพธ์
Vector: 1 45 54 71 76 12 Sum = 259