class Demo {
public static void main(String[] args) {
int[] arr={3,54,1,25,41,9};
for(int x=0;x<arr.length-1;x++)
{
for(int y=0;y<arr.length-x-1;y++)
{
if(arr[y]>arr[y+1])
{
int temp=arr[y];
arr[y]=arr[y+1];
arr[y+1]=temp;
}
}
}
printArray(arr);//System.out.print(arr);你这个是输出数组在内存的位置。
//解决办法:自己定义一个打印数组方法,把arr扔进去就OK。
}
public static void printArray(int[] arr){
System.out.print("[");
for(int i=0;i<arr.length;i++){
if(i!=arr.length-1)
System.out.print(arr+",");
else
System.out.print(arr+"]");
}
} //数组的打印
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |