回复 8楼 夏日清风
#include<stdio.h>#include<string.h>
void main()
{
void px(char *p[],int n);
char *a[10];
int i;
for(i=0;i<10;i++)
{
gets(a[i]);
}
px(a,10);
for(i=0;i<10;i++)
{
puts(a[i]);
}
getch();/*这个删去试试啊*/
}
void px(char *p[],int n)
{
char temp[10];
int i,j;
for(j=0;j<n-1;j++)
{
for(i=j;i<n;i++)
if(strcmp(p[j],p[i])>0)
{
strcpy(temp,p[i]);
strcpy(p[i],p[j]);
strcpy(p[j],temp);
}
}
}
vc6.0可以的,多了个getch(),就是有警告;