您的位置:首页 > 其它

编写一程序,将两个字符串连接起来的3种方法

2013-07-20 23:09 676 查看

1.用字符数组和自己书写的函数实现

自己写一个具有strcat函数功能的函数

实现代码如下:

#include<iostream>
using namespace std;
int main(){
char a[100],b[50];
void Strcat(char a[],char b[]);
cout<<"please input first string:"<<endl;
cin>>a;
cout<<"please input second string:"<<endl;
cin>>b;
Strcat(a,b);
cout<<"The new string: "<<a;
cout<<endl;
return 0;
}
void Strcat(char a[],char b[]){
int i,j;
for(i=0;a[i]!='\0';i++);
cout<<"Length of first string:"<<i<<endl;
for(j=0;b[j]!='\0';j++,i++){
a[i]=b[j];
}
cout<<"Length of second string:"<<j<<endl;
}


2.用标准库中的strcat函数

使用strlen()函数求数组的大小,strcat()函数用来连接字符串

实现代码如下:
#include<iostream>
#include<string>
using namespace std;
int main(){
char a[100],b[50];
cout<<"please input first string:"<<endl;
cin>>a;
cout<<"please input second string:"<<endl;
cin>>b;
cout<<"Length of first string :"<<strlen(a)<<endl;
cout<<"Length of first string :"<<strlen(b)<<endl;
cout<<"The new string: "<<strcat(a,b);
cout<<endl;
return 0;
}


3.用string方法定义字符串变量

#include<iostream>
#include<string>
using namespace std;
int main(){
string a,b;
cout<<"please input first string:"<<endl;
cin>>a;
cout<<"please input second string:"<<endl;
cin>>b;
cout<<"New string :"<<(a+b)<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐