如何使用 C++ 中的 STL 查詢向量中元素的和?
在本教程中,我們將討論一個程式,瞭解如何使用 C++ 中的 STL 查詢向量中元素的和。
要查詢給定向量的元素之和,我們將使用 STL 庫中的 accumulate() 方法。
示例
#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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C #
MongoDB
MySQL
JavaScript
PHP