用C++ 编写一个程序:提示用户输入两个字符串,然后比较这两个字符串是否相等。求教了

不用那个C++的标准库,请教了... 不用那个C++的标准库,请教了 展开
 我来答
387732471
2009-04-07 · TA获得超过156个赞
知道答主
回答量:101
采纳率:0%
帮助的人:75.1万
展开全部
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

void Replace(char *s,char *t,char *v) //对s采用char s[]等同于char *s 传递值 *为取消引用
{
if(strlen(t)!=strlen(v))
{ printf("The length of the two string you entered are not the same \n"); exit(0); }
int slen=strlen(s);
int tlen=strlen(t);
int i=0,j=0;
while(i<slen) //没到达s的末尾则比较
{
while(i<slen && j<tlen)
{
if(s[i]==t[j]) {i++; j++;} //如果相同则i,j加1
else {i=i-j+1; j=0;} //否则i退回到i-j+1
}

if(j>=tlen) //如果找到子串则进行替换
{
int k=i-tlen;
for(j=0;j<tlen;k++,j++)
{s[k]=v[j];}

}
j=0; //对t的指针以0赋值 从新开始比较
if(i>=slen)
{printf("主串中没有输入的子串\n");exit(0);}

}

}

int main()
{
char str[50],sstr[50],rstr[50];

printf("Enter the main string please\nthen I will find the place where the second string in it\n");
scanf("%s",str);
puts(str);
printf("\nEnter the sub string, and the the string you want to replace :\n");
scanf("%s%s",sstr,rstr);
Replace(str,sstr,rstr);
printf("%s\n替换成功\n",str);
return 0;
}
爽口还明快灬彩旗L
2009-04-07 · TA获得超过322个赞
知道小有建树答主
回答量:196
采纳率:0%
帮助的人:276万
展开全部
#include <iostream>

using namespace std;
int main()
{
char str1[100],str2[100];
cout<<"输入字符串1:";
cin>>str1;
cout<<"输入字符串2:";
cin>>str2;
if (strlen(str1) != strlen(str2))//如果两个字符串长度不等,当然不相等
cout<<"不相等!"<<endl;
else
{
for(int i=0; i<strlen(str1); i++)
{
if (str1[i] != str2[i])
{
cout<<"不同!"<<endl;//如果两个字符串当中有一个不相同的字符,则不相等,退出循环
break;
}
if (i == strlen(str1) - 1)//如果字符串比较到最后一个字符都相同,那么相等
cout << "相同!" << endl;
}
}
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dwthead
2009-04-07 · TA获得超过2309个赞
知道小有建树答主
回答量:1478
采纳率:0%
帮助的人:1926万
展开全部
#include <iostream>
#include<string>
using namespace std;
int main()
{
string str1,str2;
cout<<"输入字符串1:";
cin>>str1;
cout<<"输入字符串2:";
cin>>str2;
if(str1==str2)
cout<<"相同"<<endl;
else cout<<"不同"<<endl;
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xrayron
推荐于2016-06-02 · TA获得超过1052个赞
知道大有可为答主
回答量:781
采纳率:0%
帮助的人:948万
展开全部
#include <iostream.h>
#include <string.h>
int main()
{
char a[255] = {'\0'}, b[255] = {'\0'};
cout << "input first string: ";
cin >> a;
cout << "input second string: ";
cin >> b;
int i;
if(strlen(a) == strlen(b))
{
for(i = 0; i < (int)strlen(a); i++)
if(a[i] != b[i])
break;
}
if(i == (int)strlen(a))
cout << "a equal to b" << endl;
else
cout << "a not equal to b" << endl;
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tanlihua123
2009-04-07 · TA获得超过1762个赞
知道小有建树答主
回答量:555
采纳率:0%
帮助的人:281万
展开全部
这么简单的问题就悬赏50分 楼主你的分太多了吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式