码迷,mamicode.com
首页 > 其他好文 > 详细

定义一个数字数组,用冒泡排序降序输出

时间:2014-07-18 17:22:22      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:for   c   ar   public   数组   print   

public class M{ 

int[] array = {2,3,6.5.89.4.1.6};

  int b = array.length;

  int temp = 0;

     for(int i=0;i<b;i++){

        for(int j=i+1;j<b;j++){

           if(array[i]>array[j]){

               temp = a[i];

               a[j] = a[i];

               a[j] = temp;

   }

 }

}

 System.out.print("array元素的降序排序:");

 for(int i=0;i<b;i++);

 System.out.println(array[i]+"");

}

定义一个数字数组,用冒泡排序降序输出,布布扣,bubuko.com

定义一个数字数组,用冒泡排序降序输出

标签:for   c   ar   public   数组   print   

原文地址:http://www.cnblogs.com/wry13172/p/3853217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!