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...
}