用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