题解 | #字符串拼接#
字符串拼接
http://www.nowcoder.com/practice/167be62a4f66497dbf318617cd14f57d
这道题目很简单,只需要让两个字符串相加即可,主要注意的就是输入字符串的方式,采用的getline(cin,s)
#include <string>
using namespace std;
int main() {
string s1, s2;
getline(cin, s1);
getline(cin, s2);
// write your code here......
s1+=s2;
cout<<s1<<endl;
return 0;
}