标签: c++ string
#include <bits/stdc++.h> using namespace std; int main() { string s; getline(cin, s); cout << s << endl; return 0; }
我认为这会帮助我的问题和答案。
答案 0 :(得分:2)
在您显示的代码中,我认为仅按 Enter 键将返回一个空字符串。