【程序设计】2019-05-25 本文已影响0人 我觉得我脑子可能有点问题 int i,j; char t; for(i=0;i<num;i++) for(j=i+1;j<num;j++) if(s[i]<s[j]) {t=s[i];s[i]=s[j];s[j]=t;}