Tính tổng tất cả các phần tử của một vectơ C ++ có thể được thực hiện rất dễ dàng bằng phương thức std ::Tích lũy. Nó được định nghĩa trong tiêu đề
Thuật toán
Begin Declare v of vector type. Initialize some values into v vector in array pattern. Print “Sum of all the elements are:”. Call accumulate(v.begin(),v.end(),0) to calculate the sum of all values of v vector. Print the result of sum. End.
Mã mẫu
#include<iostream>
#include<vector>
#include<numeric>
using namespace std;
int main() {
vector<int> v = {2,7,6,10};
cout<<"Sum of all the elements are:"<<endl;
cout<<accumulate(v.begin(),v.end(),0);
} Đầu ra
Sum of all the elements are: 25