Description
写一函数,将两个字符串连接
Input
两行字符串
Output
链接后的字符串
Sample Input
123
abc
Sample Output
123abc
#include <iostream>
using namespace std;
int main()
{
char s1[10],s2[10];
int i=0,j=0;
cin>>s1>>s2;
while(s1[i]!='\0')
i++;
while(s2[j]!='\0')
s1[i++]=s2[j++];
s1[i]='\0';
cout<<s1<<endl;
return 0;
}
另一种方法:
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char s1[10],s2[10];
cin>>s1>>s2;
strcat(s1,s2);
cout<<s1<<endl;
return 0;
}
注意:1.定义字符串
2.strcat函数头文件在C语言为<string.h>
在C++中为<cstring>
本文介绍了两种使用C++实现字符串连接的方法。一种是手动遍历并追加字符,另一种是利用标准库函数strcat。文章提供了完整的代码示例,并解释了strcat函数的使用及所需头文件。
4570

被折叠的 条评论
为什么被折叠?



