while(cin>>str)循环结束问题&cin相关问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while(cin>>str)循环结束问题&cin相关问题相关的知识,希望对你有一定的参考价值。
int main()
{
string str;
while(cin>>str)
cout<<str<<endl;
return 0;
}
结束循环:1.Windows系统中,enter->ctrl+z->enter;
2.linux,ctrl+d
当cin碰到EOF(文件结束标记end of file)循环会终止,因此我们只需要输入一个模拟end-of-file的值即可,这个值在linux下面是Ctrl+D,在windows下是ctrl+z;
以上是关于while(cin>>str)循环结束问题&cin相关问题的主要内容,如果未能解决你的问题,请参考以下文章