冒泡法数组排序
Posted l666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡法数组排序相关的知识,希望对你有一定的参考价值。
用冒泡法给数组从小到大和从小到大排序
import java.util.Scanner; public class six4{ public static void main(String []args){ int score[]=new int [10]; Scanner s=new Scanner(System.in); for(int i=0;i<score.length;i++) score[i]=s.nextInt(); for(int i=1;i<score.length;i++) for(int j=0;j<score.length;j++) if(score[i]<score[j]){ //交换位置 int temp=score[i]; //定义一个临时变量存放数据 score[i]=score[j]; score[j]=temp; } for(int i=0;i<score.length;i++) //按从小到大的顺序输出 System.out.print(score[i]+" "); for(int i=score.length-1;i>=0;i--) //按从大到小的顺序输出 System.out.print(score[i]+" "); } }
运行结果如下:
以上是关于冒泡法数组排序的主要内容,如果未能解决你的问题,请参考以下文章