#include <iostream>
#include <string>
using namespace std;
int main()
{
string word;
while(cin>>word)
cout<< word << endl;
return 0;
}
在VS的命令行模式下,
可以发现效果是不一样的,在按下ctrl+c后,命令行直接就提示”请按任意键继续“,而在按下ctrl+z后需要在按回车,命令行才有同样的提示。
参考文献:http://tieba.baidu.com/p/1386355697
http://bbs.csdn.net/topics/310129688