本帖最后由 罗超8849 于 2014-7-19 19:13 编辑
/*
需求:对给定数组排序。{5,1,6,4,2,8,9}
*/
class ArrayTest_2
{
public static void main(String[] args)
{
int[] arr = new int[]{5,1,6,4,2,8,9};
printArray(arr);
selectSort(arr);
printArray(arr);
}
public static int selectSort(int[] arr)
{
for(int x=0; x<arr.length-1; x++)
{
for(int y=x+1; y<arr.length; 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]+"]");
}
}
}
dos中的提示是这个:
向各位求教?
|
|