欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c++带有空格的字符串的读入

程序员文章站 2024-02-23 17:12:58
...

当定义字符串的类型为string时
1.getline(cin,s)

#include<bits/stdc++.h>

using namespace std;


int main(){
    string s;
    getline(cin,s);
    cout<<s<<endl;
    return 0;
}

当定义的类型为char[] 字符数组类型时
1.cin.getline(s,sizeof(s))

#include<bits/stdc++.h>

using namespace std;


int main(){
    char s[1000];
    cin.getline(s,sizeof(s));
    cout<<s<<endl;
    return 0;
}