C++: Enter an article without giving the number of words. Use a cin loop to get each word. How to stop the loop at the end of the article?
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-07-04 13:45:46
0
2
1338

Enter an article without giving the number of words. Use a cin loop to get each word. How to stop the loop at the end of the article?
For example:
Input: to be or not to be is a question
Code:

string a;
while( ? ) //无法停止循环
{
    cin >> a;
    // Do some thing...
}
曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(2)
淡淡烟草味
while(cin >> a)
{
    // Do some thing...
}

cin在读取输入流的末尾是会设置标记位failbit为false
某草草
if(a == "quit")
    break;
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template