1424: 【C++】(填空)字符串连接(1)

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

Description

将两个字符串连接。
复制以下代码,补充 下划线 和 ?的代码。

#include<iostream>
using namespace std;
char s1[201],s2[101];
void catenate(char a[],char b[])
{
	int i;
	for (i=0; a[i]!='?'; i++) ;
	for (int j=0; b[j]!='?'; j++)
		a[?]=b[?];
	a[i]='\0';
}
int main()
{
	cin.getline(s1, 100);
	cin.getline(s2, 100);
	catenate(s1,s2);
	cout<<s1<<endl;
	return 0;
}

Input

两行字符串

Output

连接后的字符串

Sample Input Copy

123
abc

Sample Output Copy

123abc

Source/Category