C++如何用cin输入["eat", "tea", "tan", "ate", "nat", "bat"]
时间: 2024-01-15 07:19:49 浏览: 137
C++输入cin详解
5星 · 资源好评率100%
C++可以使用`cin`来输入字符串数组。以下是一个示例代码:
```cpp
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<string> strs;
string str;
while (cin >> str) {
strs.push_back(str);
}
// 输出输入的字符串数组
for (const auto& s : strs) {
cout << s << " ";
}
cout << endl;
return 0;
}
```
运行这段代码,然后输入字符串数组`["eat", "tea", "tan", "ate", "nat", "bat"]`,按下回车键结束输入。程序会将输入的字符串数组存储在`strs`向量中,并输出该向量的内容。
阅读全文