C++中字符串插入问题,字符串b插入到字符串a的第n个位置处

#include<iostream>#include<string>usingnamespacestd;voidmain(){intm=0,n;inti=0,j=0,k=... #include <iostream>
#include <string>
using namespace std;
void main()
{
int m=0,n;
int i=0,j=0,k=0;
string a,b;
cout<<"please enter the two strings:"<<endl;
cin>>a>>b;
cout<<"please enter the number:"<<endl;
cin>>n;
string *p1=&a,*p2=&b,*p3=&a;
while(m<n-1)
{
p3[k++]=p1[i++];
m++;
}
while(j<b.length())
p3[k++]=p2[j++];
while(p1[i]!="\0")
p3[k++]=p1[i++];
for(int x=0;x<k-1;x++)
cout<<p3[x];
}
编译没有出错,但是执行不出结果,求高手帮忙!
展开
 我来答
晒白的黑马
2012-04-24 · TA获得超过363个赞
知道答主
回答量:194
采纳率:0%
帮助的人:165万
展开全部
代码重新帮你写过了,你的代码太乱了```
#include <iostream>
#include <string.h>
using namespace std;
void main()
{
int n,i=0,j=0;
char a[30]={0},b[30]={0},temp[30]={0},newch[30]={0};
cout<<"please enter the two strings:"<<endl;
cin>>a>>b;
cout<<"please enter the number:"<<endl;
cin>>n;
for (;j<n;j++)
{
newch[j]=a[j]; //将前n个字符保存到新的字符数组
}
for(;n<strlen(a);n++)
{
temp[i]=a[n]; //将n后面的字符串保存到临时数组temp中
i++;
}
strcat(newch,b); //将用户输入的字符连接到新数组中
strcat(newch,temp);//将n后面的临时字符串连接到新数组中
cout<<newch<<endl;

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式