cin.getline和gets都以回车键为结束一行的输入。
#include<iostream>
using namespace std
;
int main() {
char buf1
[2020];
gets(buf1
);
char buf2
[2020];
cin
.getline(buf2
,2020);
cout
<<"----------"<<endl
;
cout
<<buf1
<<endl
;
cout
<<buf2
<<endl
;
return 0;
}
转载请注明原文地址:https://ipadbbs.8miu.com/read-2725.html