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];
}
编译没有出错,但是执行不出结果,求高手帮忙! 展开
#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];
}
编译没有出错,但是执行不出结果,求高手帮忙! 展开
1个回答
展开全部
代码重新帮你写过了,你的代码太乱了```
#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;
}
#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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询