作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
//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/
我是一名优秀的程序员,十分优秀!