📜  如何在 c++ stl 中存储带空格的字符串数组 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:58.660000             🧑  作者: Mango

代码示例1
#include 
#include 

using namespace std;

int main()
{
string input;
getline(cin, input);

cout << "You entered: " << input << endl;
}