我尝试使用getline()
数组将n
的数量最多std::string
。但是我的数组以1
索引而不是0
开头。另外,每次我的for循环工作的次数不超过n
时,它的工作次数也多达n - 1
。
这是我的代码:
int main()
{
int n;
std::cin >> n;
std::string a[20];
for (int x = 0; x < n; x++)
{
std::getline(std::cin, a[x]);
}
std::cout << a[0];
return 0;
}