如何总结C ++向量的元素?
通过std::accumulate方法可以很容易地完成C++向量的所有元素的汇总。它在<numeric>标头中定义。它将向量中指定的所有存在的值累加到指定的总和。
算法
Begin
Declare v of vector type.
Initialize some values into v vector in array pattern.
Print “所有元素的总和是:”.
Call accumulate(v.begin(),v.end(),0) to calculate the sum of all
values of v vector.
Print the result of sum.
End.范例程式码
#include<iostream>
#include<vector>
#include<numeric>
using namespace std;
int main() {
vector<int> v = {2,7,6,10};
cout<<"所有元素的总和是:"<<endl;
cout<<accumulate(v.begin(),v.end(),0);
}输出结果
所有元素的总和是: 25
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短