这里绝对是初学者。我正在尝试解决这个问题,但遇到了分段错误。我尝试寻找解决方案,但找不到不起作用的原因。
要重现错误,只需复制下面的代码并将其粘贴到上面链接下的编辑器中。
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <sstream>
#include <algorithm>
//using namespace std;
int main() {
int n, q;
std::cin >> n >> q;
std::vector<std::vector<int>> arr;
// handle n lines representing the arrays
for (int i = 0; i < n; i++) {
std::vector<int> numbers;
std::string line;
getline(std::cin, line);
std::istringstream iss(line);
int enterNumber;
while (iss >> enterNumber)
{
numbers.push_back(enterNumber);
}
arr.push_back(numbers);
}
// handle q lines representing i, j
int x, y;
for (int i = 0; i < q; i++) {
std::cin >> x >> y;
std::cout << arr[x][y];
}
return 0;
}
我错过了什么?为什么它不起作用?
导致分段错误的输入:
2 2
3 1 5 4
5 1 2 8 9 3
0 1
1 3
预期输出:
5
9