- public class mySortArrays
- {
- public static void swapNums(int a,int b)
- {
- int temp;
- temp = a;
- a = b;
- b = temp;
- }
- public static void sortArrays(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])
- {
- swapNums(arr[x],arr[y]);
- }
- }
- }
- }
-
- public static void printArrays(int[] arr)
- {
- for(int arrIndex:arr)
- {
- System.out.print(""+arrIndex+",\t");
- }
- System.out.println("");
- }
-
- public static void main(String[] args)
- {
- int[] a = {4,5,7,2,8,6};
-
- printArrays(a);
- sortArrays(a);
- printArrays(a);
- }
- }
复制代码 看看能发现什么问题不?
|
|