1425: 【C++】(填空)字符串连接(2)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:20 Solved:20

Description

将两个字符串连接。
复制以下代码,补充 下划线 和 ?的代码。
#include<iostream>
#include<________>
using namespace std;
char s1[201],s2[101];
int main()
{
	cin.getline(s1, 100);
	cin.getline(s2, 100);
	________(s1,s2);
	cout<<s1<<endl;
	return 0;
}

Input

两行字符串

Output

连接后的字符串

Sample Input Copy

123
abc

Sample Output Copy

123abc

Source/Category