#include <iostream>
using namespace std;
#include <string>
int main()
{
string word;
while ( cin >> word )
cout << "word read is: " << word << '\n';
cout << "ok: no more words to read: bye!\n"; //什么情况下才能执行这句??
return 0;
}
在书上看到一个小程序,但不知道什么时候会能执行这句??
哪位朋友指点一下啊?
谢谢!