|
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string word;
while (cin >> word)
cout << "word read is:" << word << '\n';
cout << "ok: no more words to read: bye!\n";
return 0;
}
When can I run this program to output ok: no more words to read: bye!
Huh? ? ? ? This question seems a bit perverted, hehehe, help me back |
|