// 前两个参数为迭代器 // 第三个参数表示和的初值,决定返回值的类型,如int则为0,LL 则为0LL LL total = accumulate(a.begin(), a.end(), 0LL);