如何输入输出带空格的字符串

#include 
#include 
using namespace std;
int main(){
    //字符串输入(可以带空格) 
    string str;
    getline(cin,str);
    //字符串输出 
    cout<

你可能感兴趣的:(如何输入输出带空格的字符串)