gpt4 book ai didi

c++ - 使用 C++ 读取管道输入

转载 作者:IT王子 更新时间:2023-10-28 23:28:09 25 4
gpt4 key购买 nike

我正在使用以下代码:

#include <iostream>
using namespace std;

int main(int argc, char **argv) {
string lineInput = " ";
while(lineInput.length()>0) {
cin >> lineInput;
cout << lineInput;
}
return 0;
}

使用以下命令:回显“你好” | test.exe

这个结果是一个打印“Hello”的无限循环。如何让它读取并打印一个“Hello”?

最佳答案

string lineInput;
while (cin >> lineInput) {
cout << lineInput;
}

如果您真的想要完整的行,请使用:

string lineInput;
while (getline(cin,lineInput)) {
cout << lineInput;
}

关于c++ - 使用 C++ 读取管道输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5446161/

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