好久没有用冒泡排序了。。
贴一个最常用的。。
for (int i=0;i<10;i++) for(int j=0;j<10-1-i;j++) { if (a[j]<a[j+1]) { temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; } }