gpt4 book ai didi

c++ - 当我使用 Ctrl-C 终止输入时,visual studio 2013 中的输出会减少

转载 作者:行者123 更新时间:2023-11-30 01:46:29 25 4
gpt4 key购买 nike

//Program to terminate the input by ctrl-c    
#include<iostream>
#include<vector>
#include<string>

using namespace std;

int main()
{
vector<string> vec;
string word;

while (cin >> word)
vec.push_back(word);

cout << endl << endl;
auto beg = vec.begin();
while (beg != vec.end())
{
//to print the vector
cout << *beg << endl;
beg++;
}
}

当按下 control-c 终止...的输入流时

ankur
anshu
singh
ankit
ashuto
ashu

我明白了...

ankur
anshu
si^CPress any key to continue . . .

最佳答案

在终端(又名命令行)中,Ctrl+C 会立即终止程序。它不会等待任何事或任何人。因此,您的程序实际上是在执行过程中停止,所以它做什么和不做什么完全是胡说八道。

在某些情况下,您可能实际上需要 Ctrl+D (Linux/Unix) 或 Ctrl+Z (Windows),这表示“文档结束”。这可能会被解释为“输入结束”,而不会以其他方式中断程序。但是,您的结果可能会有所不同。

关于c++ - 当我使用 Ctrl-C 终止输入时,visual studio 2013 中的输出会减少,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33156830/

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