Description
写一函数,将两个字符串连接
Input
两行字符串
Output
链接后的字符串
Sample Input
123
abc
Sample Output
123abc
#include
using namespace std;
int main()
{string a,b,c;
cin>>a;
cin>>b;
c=a+b;
cout<<c;
cout<<endl;
return 0;
}
写一函数,将两个字符串连接
两行字符串
链接后的字符串
123
abc
123abc
上一篇:鞍点计算
下一篇:简单编码
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M