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

test

时间:2021-01-21 10:35:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgb   string   bre   com   continue   bsp   str   sys   package   

 

package com.vfsd.core;

public class Test1 {
    public static int[] a1= {3,8,2,5,1,9};
    public static void main(String[] args) {
        
        
        print1();
        
        for(int k=0;k<a1.length-1;k++)
        {
            for(int k2=k+1;k2<a1.length;k2++)
            {
                int index1=a1[k];
                int index2=a1[k2];
                if(index1>index2)
                {
                    a1[k]=index2;
                    a1[k2]=index1;
                    
                    
                    //continue;
                    //break;
                }
                
                print1();
            }
            //print1();
        }
        
        print1();
    }
    
    public static void print1(){
        System.out.println("==================================== ");
        System.out.print(" [");
        for(int k=0;k<a1.length;k++)
        {
            System.out.print(a1[k]+" ");
        }
        System.out.print("]\n");
        System.out.println("==================================== ");
    }

}

 

==================================== 
 [3 8 2 5 1 9 ]
==================================== 
==================================== 
 [3 8 2 5 1 9 ]
==================================== 
==================================== 
 [2 8 3 5 1 9 ]
==================================== 
==================================== 
 [2 8 3 5 1 9 ]
==================================== 
==================================== 
 [1 8 3 5 2 9 ]
==================================== 
==================================== 
 [1 8 3 5 2 9 ]
==================================== 
==================================== 
 [1 3 8 5 2 9 ]
==================================== 
==================================== 
 [1 3 8 5 2 9 ]
==================================== 
==================================== 
 [1 2 8 5 3 9 ]
==================================== 
==================================== 
 [1 2 8 5 3 9 ]
==================================== 
==================================== 
 [1 2 5 8 3 9 ]
==================================== 
==================================== 
 [1 2 3 8 5 9 ]
==================================== 
==================================== 
 [1 2 3 8 5 9 ]
==================================== 
==================================== 
 [1 2 3 5 8 9 ]
==================================== 
==================================== 
 [1 2 3 5 8 9 ]
==================================== 
==================================== 
 [1 2 3 5 8 9 ]
==================================== 
==================================== 
 [1 2 3 5 8 9 ]
==================================== 

 

test

标签:rgb   string   bre   com   continue   bsp   str   sys   package   

原文地址:https://www.cnblogs.com/herd/p/14303199.html

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