gpt4 book ai didi

c++ - 输入未通过 Vector 输入

转载 作者:行者123 更新时间:2023-11-28 06:57:29 27 4
gpt4 key购买 nike

好的,所以我正在尝试将输入读入 vector ,然后以相反的顺序打印出来。我对如何做到这一点有一个很好的想法(我认为)但我的问题是我的代码只将用户输入读取到 vector 的第一个槽中。 . .我需要它从输入中读取 10 个单独的字符串到我的 vector 中的 10 个不同的槽中。 . .这是我到目前为止所得到的:

#include <iostream>;
#include <vector>;
#include <string>;

using namespace std;

int main()
{
vector<string> name_list(11);
int n = 0;
for (int n = 0; n < 11; ++n);
getline(cin, name_list[n]);
cout << name_list[0];

int stop;
cin >> stop;
return 0;
}

最佳答案

循环语句后有一个分号

for (int n = 0; n < 11; ++n);

所以循环什么都不做

您还谈到了您需要阅读的 10 个元素。

代码可能如下所示:

const size_t N = 10;
vector<string> name_list( N );

for ( int n = 0; n < N; ++n )
{
getline( cin, name_list[n] );
}

for ( vector<string>::size_type n = name_list.size(); n != 0; )
{
cout << name_list[--n] << endl;
}

同样可以使用标准算法编写。例如

const size_t N = 10;
vector<string> name_list;

name_list.reserve( N );

copy_n( istream_iterator<string>( cin ), N, back_inserter( name_list ) );

reverse_copy( name_list.begin(), name_list.end(), ostream_iterator<string>( cout, "\n" ) );

关于c++ - 输入未通过 Vector 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22975209/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com