摘要: 1 public class Sort{ 2 public static void main(String[] args){ 3 int a[] = {6,37,26,12,58,10,22,43}; 4 for(int i=0;ia[j+1]){ 7 int temp = a[j]; 8 a[j]= a[j+1]; 9 a[j+1] = temp;10 }11 ... 阅读全文
posted @ 2014-01-09 20:20 午荷女孩 阅读(1071) 评论(0) 推荐(0)