当前位置 : 主页 > 编程语言 > c++ >

getline 函数

来源:互联网 收集:自由互联 发布时间:2021-06-23
#include bits/stdc++.h #include string using namespace std; string s; int main() { getline(cin,s); cout s endl; /* fsw sf fsw sf */ cin s cout s endl; fsw sf fsw return 0 ; }
    #include <bits/stdc++.h>
    #include <string>
    using namespace std;
    string s;
    int main()
    {
        getline(cin,s);
        cout<<s<<endl; 
        /*
        fsw sf
        fsw sf
        */
        cin>>s
        cout<<s<<endl;
        fsw sf
        fsw 
        return 0;
    }
网友评论