算数生成算法accumulate求和

#include <iostream>
#include <vector>
#include <numeric>
using namespace std;

int main()
{
   vector<int> v;
   for(int i = 0; i <= 100; i++)
   {
      v.push_back(i);
   }

   // 参数3 起始累加值
   int total = accumulate(v.begin(), v.end(), 0);
   cout << "累加和 " << total << endl;
   
   return 0;
}
$ ./a.out           
累加和 5050
posted @ 2022-07-31 16:42  thomas_blog  阅读(24)  评论(0编辑  收藏  举报