输入三个字符串,按由小到大的顺序输出.有错.望指点.不得结果.
#include<stdio.h>#include<string.h>
int main()
{ char str0[10],*d;
d=str0;
int i=0;
char *p1,*p2,*p3,str1[10],str2[10],str3[10];
p1=str1;p2=str2;p3=str3;
printf("please input three string\n");
scanf("%s",p1);//字符串输入.
scanf("%s",p2);
scanf("%s",p3);
for(;*p1!='\0'&&*p2!='\0'&&p3!='\0';p1++,p2++,p3++,i++)
{
if (*p1>*p2)//比较
{
strcpy(d,(p1-i));strcpy((p1-i),(p2-i));strcpy((p2-i),d);//交换字符串,其中i的作用是:因为上面有p1++,p2++,p3++,目的是为了让指针指回字符数组的开头部分.这样才能复制.
}
if (*p1>*p3)
{
strcpy(d,(p1-i));strcpy((p1-i),(p3-i));strcpy((p3-i),d);
}
if (*p2>*p3)
{
strcpy(d,(p2-i));strcpy((p2-i),(p3-i));strcpy((p3-i),d);
}
}
printf("%s%s%s\n",p1,p2,p3);
return (0);
}