C++:输入一个字符串,输入一个字符,然后去掉字符串中的该字符,并输出去掉字符后的字符串

编写C++程序,输入一个字符串,输入一个字符,然后去掉字符串中的该字符,并输出去掉字符后的字符串。例如,输入字符串”asdfga”和字符’a’,则输出”sdfg”。是数组... 编写C++程序,输入一个字符串,输入一个字符,然后去掉字符串中的该字符,并输出去掉字符后的字符串。例如,输入字符串”asdfga”和字符’a’,则输出”sdfg”。

是数组这一章的作业题
展开
 我来答
沧海雄风2009
2012-03-21 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8525
采纳率:79%
帮助的人:2754万
展开全部
Please input a string:
abcsda-as
please input the key want to delete:
a
bbcsd--ss
Press any key to continue

#include <iostream>
using namespace std;
main()
{
int i,j,nLen;
char str[100]="\0",key;
cout<<"Please input a string:"<<endl;
cin>>str;
cout<<"please input the key want to delete:"<<endl;
cin>>key;
nLen=strlen(str);
for (i=0;i<=nLen;i++)
{
if (str[i]=='a')
{
for (j=i;j<=nLen;j++)
{
str[i]=str[i+1];
}
nLen--;
}
}
cout<<str<<endl;
}
mjfsxl
2012-07-08
知道答主
回答量:7
采纳率:0%
帮助的人:1.1万
展开全部
Please input a string:
abcsda-as
please input the key want to delete:
a
bbcsd--ss
Press any key to continue

#include <iostream>
using namespace std;
main()
{
int i,j,nLen;
char str[100]="\0",key;
cout<<"Please input a string:"<<endl;
cin>>str;
cout<<"please input the key want to delete:"<<endl;
cin>>key;
nLen=strlen(str);
for (i=0;i<=nLen;i++)
{
if (str[i]=='a')
{
for (j=i;j<=nLen;j++)
{
str[i]=str[i+1];
}
nLen--;
}
}
cout<<str<<endl;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式