本帖最后由 唐学松 于 2012-6-6 23:26 编辑
class test
{
public static void main(String[] args)
{
int jiu []={12,14,54,65,31};
getindex(jiu);// 输出没问题,但是排序还是乱序输出,而不是排序整理好输出
printArray(jiu);
}
public static void getindex(int [] arr)
{
for (int x=0;x<arr.length-1 ;x++ )
{
for (int y=x+1;y<arr.length-1 ;y++ )
{
if (arr[x]>arr[y])
{
int temp=arr[x];
arr[x]=arr[y];
arr[y]=temp;
}
}
}
}
public static void printArray(int [] arr)
{
System.out.print("[");
for(int x=0; x<arr.length; x++)
{
if(x!=arr.length-1)
System.out.print(arr[x]+", ");
else
System.out.println(arr[x]+"]");
}
}
} |
|