1.冒泡排序
public class DemoArray001 {
public static void main(String[] args) {
int score[]={12,45,23,10,100};
//冒泡排序,使最大的在前面
//第一个数与后面所有数进行比较
for(int i=0;i<score.length-1;i++){
for(int j=i+1;j<score.length;j++){
if(score[i]<score[j]){
int temp=score[i];
score[i]=score[j];
score[j]=temp;
}
}
}
System.out.print(score[0]+" "+score[4]);
}
}