回复 2楼 feiyue323
#include<stdio.h>#include<string.h>
int main()
{
void sort(char s[ ][6]);
int i,n;
printf("please input n specific value:\n");
scanf("%d",&n);
char str[n][6];
printf("input n strings:\n");
for(i=0;i<n;i++)
scanf("%s",str[i]);
sort(str);
printf("now,the squence is :\n");
for(i=0;i<n;i++)
printf("%s\n",str[i]);
return 0;}
void sort(char s[n][6])
{
int i,j;
char *p,temp[n];
p=temp;
for(i=0;i<n-1;i++)
for(j=0;j<n-1-i;j++)
if(strcmp(s[j],s[j+1])>0)
{
strcpy(p,s[j]);
strcpy(s[j],s[+j+1]);
strcpy(s[j+1],p);
}
}