void fun(char t[]){ char c; int i,j; for(i=strlen(t);i;i--) { for(j=0;j { if(t[j]>t[j+1]) { c=t[j]; t[j]=t[j+1]; t[j+1]=c; } } }}试试吧,没有上机测试