cc++输入一整行字符串

    技术2022-07-10  126

    cin.getline和gets都以回车键为结束一行的输入。

    #include<iostream> using namespace std; int main() { char buf1[2020]; //c语言,c++也用 gets(buf1); //c++ char buf2[2020]; cin.getline(buf2,2020); cout<<"----------"<<endl; cout<<buf1<<endl; cout<<buf2<<endl; return 0; }

    Processed: 0.008, SQL: 9