标签: c++ string getline
我想在使用getline获取整数输入后使用string来阅读cin。但我有一个额外的空间困扰我。这是我的代码:
getline
string
cin
string y; int x; cin >> x; getline(cin, y);
说,输入:"5 Hello World" 输出结果为:"5"为整数& " Hello World"为字符串。
"5 Hello World"
"5"
" Hello World"