朴素区间和
运行下面这段程序:
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main() {
vector<int> a = {1, 2, 3, 4, 5};
int s = 0;
for (int i = 1; i <= 3; i++) s += a[i];
cout << s << endl;
}
(本题用 g++ -std=c++17 -O0 编译。)
全部评论