C语言问题:不用strcmp函数比较两个字符串的大小
main()
{ int i=0;
char a[100],b[100];
gets(a);gets(b);
while(a[i] == b[i]&&a[i]!='\0')i++;
if (a[i] == '\0')
printf("The 2 strings are the same.");
else
printf("The 2 strings are different.");
}
这个程序只能比较两个字符串是否相同 如果改这个程序 使它能比较出字符串a>b a<b a=b 三种情况呢? 展开
#include<stdio.h>
#define N 80
void cmp(char a[N],char b[N])
{
int i=0;
char *p1=a,*p2=b;
while(*(p1+i)==*(p2+i)&&*(p1+i)!='\0')
{
i++;
}
if(*(p1+i)>*(p2+i))
printf("%s>%s\n",p1,p2);
else if(*(p1+i)<*(p2+i))
printf("%s<%s\n",p1,p2);
else
printf("%s=%s\n",p1,p2);
}
int main()
{
char a[N]={"abcdef"},b[N]={"abcdfg"};
char c[N]={"abcdefg"},d[N]={"abcdefg"};
char e[N]={"abcdefg"},f[N]={"abcdeeg"};
cmp(a,b);
cmp(c,d);
cmp(e,f);
return 0;
}
运行效果:
扩展资料:
while语句若一直满足条件,则会不断的重复下去。但有时,需要停止循环,则可以用下面的三种方式:
一、在while语御好句中设定条件语句,条件不满足,则循环自动停止。
如:只输出3的倍数的循环;可以设置范围为:0到20。
二、在循环结构中加入流程控制语句,可以使用户退出循环。
1、break流程控制:强制中断该运行区内的语句,跳出该运行区,继续运行区域外镇睁铅的语句。
2、continue流程控制:也是中断循环内的运行操作,并且从早盯头开始运行。
推荐于2018-04-05
int main()
{
int i=0;
char a[100],b[100];
gets(a);gets(b);
while(a[i] == b[i]&&a[i]!='\吵樱0')i++;
if (a[i] == '\0'&&b[i]=='\0')
printf("The 2 strings are the same. a =b\n");
else {
if(a[i] > b[i])
printf("The 2 strings are different. a > b\n");
else
printf("The 2 strings are different. a < b\n");
}
}