用C ++中的带有硬编码元素初始化std :: vector的最简单方法是什么?
在现代C++[11,14,…]中,向量通过以下方式初始化
std::vector<int> vec = {1,2,3};算法
Begin Initialize the vector v. Using accumulate, sum up all the elements of the vector v is done. Print the result. 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
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志