class Bubble{
//冒泡排序
static void BubbleSort(int[] a){
for(int i=0;ia[j+1]){
int temp = a[j];
a[j] = a[j+1];
a[j+1] = temp;
}
}
}
}
}