string s;
cin >> s;
cout << s ;
输入 “hello world”
输出 hello
为何 whlie (cin >> s) {
. cout << s << endl
能输出 hello
。 world
呢?
不是空格后都清空了吗?