C++ vector 输出
stringword;vector<string>text(10,"hello");while(cin>>word){text.push_back(word);cout<...
string word;
vector<string> text(10,"hello");
while(cin>>word)
{
text.push_back(word);
cout<<text[0]<<endl;
}
既然push_back()是在text的末尾增加元素,那么为什么输入"world"并不输出“helloworld” 展开
vector<string> text(10,"hello");
while(cin>>word)
{
text.push_back(word);
cout<<text[0]<<endl;
}
既然push_back()是在text的末尾增加元素,那么为什么输入"world"并不输出“helloworld” 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询