如何在C++中用STL找到向量的元素之和

在本教程中,我们将讨论一个程序,以了解如何在C++中使用STL查找向量的元素和。

要找到给定向量的元素总和,我们将使用STL库中的accumate()方法。

示例

#include <bits/stdc++.h>
using namespace std;
int main(){
   //定义向量
   vector<int> a = { 1, 45, 54, 71, 76, 12 };
   cout << "Vector: ";
   for (int i = 0; i < a.size(); i++)
      cout << a[i] << " ";
   cout << endl;
   //计算元素的和
   cout << "Sum = "<< accumulate(a.begin(), a.end(), 0);
   return 0;
}

输出结果

Vector: 1 45 54 71 76 12
Sum = 259