输入3个字符串,按由小到大的顺序输出,用指针的方法,我不知道我这哪里错了,C语言高手看看吧!

2024年11月17日 17:29
有3个网友回答
网友(1):

#include
#include //字符串比较大小不能直接比较它们的指针,应该使用strcmp(a,b)来判断a,b大小.必须引用此头文件
void main()
{
void swap(char *&p1,char *&p2);//不能交换式因为你传的不是地址
char cs[3][20];
int i;
char *pointer_1,*pointer_2,*pointer_3;
for(i=0;i<3;i++)
scanf("%s",cs[i]);
pointer_1=cs[0];pointer_2=cs[1];pointer_3=cs[2];
if(strcmp(cs[0],cs[1])>0)
swap(pointer_1,pointer_2);
if(strcmp(cs[0],cs[2])>0)
swap(pointer_1,pointer_3);
if(strcmp(cs[1],cs[2])>0)
swap(pointer_2,pointer_3);
puts(pointer_1);
puts(pointer_2);
puts(pointer_3);
}
void swap(char *&p1,char *&p2)
{
char *temp;
temp=p1;
p1=p2;
p2=temp;
}

swap无效时因为你没有把指针地址传进去,导致了无用功.
指针char *也是类型,必须加上'&'表示传地址,才可以在函数结束以后对原来的参数起到作用
PS.原来你的函数中temp 是char类型,而你交换的是char *,所以这里也需要修改

网友(2):

修改后的程序如下(调试通过,保证运行):

#include
main()
{
char cs[3][20],*p1,*p2,*p3,*temp;
int i;
printf("Input three string:\n");
for(i=0;i<3;i++)gets(cs[i]);

p1=cs[0];p2=cs[1];p3=cs[2];
if(strcmp(p1,p2)>0){temp=p2;p2=p1;p1=temp;}
if(strcmp(p2,p3)>0){temp=p3;p3=p2;p2=temp;}
if(strcmp(p1,p2)>0){temp=p2;p2=p1;p1=temp;}

printf("%s\n",p1);
printf("%s\n",p2);
printf("%s\n",p3);
}

你注意p1、*p1的使用,什么时候要用在前面加*

网友(3):

p1=&cs[0][20];p2=&cs[1][20];p3=&cs[2][20];
这是为什么?
我记得指针只要指向数组的第一个元素