gpt4 book ai didi

c++ - 在 C++ 中读取多行输入

转载 作者:太空宇宙 更新时间:2023-11-04 15:01:53 27 4
gpt4 key购买 nike

我正在尝试从 C++ 命令行读取多行输入并将它们存储到一个数组中。这是我的代码。

std::string line;
int in;
std::vector<std::string> v;

while(std::getline(std::cin, line)){
if(line == "^D") break;
v.push_back(line);
}
for(auto it = v.begin(); it != v.end(); it++){
std::cout<<*it<<std::endl;

}

stdin 进入无限循环,我似乎无法弄清楚如何防止这种情况发生。基本上,目标行为是在没有任何输入的情况下连续两次按下 enter 应该终止 stdin 循环并运行程序。

最佳答案

我会测试字符串是否为空。如果是这样,打破。像这样:

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

int main(){

std::string line;
std::vector<std::string> v;

while(std::getline(std::cin, line)){
if (line.empty()){
break;
}
v.push_back(line);
}

std::vector<std::string>::iterator it;

for (it = v.begin(); it != v.end(); it++){
std::cout << *it << '\n';
}

return 0;
}

关于c++ - 在 C++ 中读取多行输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33924558/

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