1 static void sort(int[] a) 2 { 3 for (int i = 0; i < a.Length; i++) 4 { 5 for (int j = i; j < a.Length; j++) 6 { 7 if (a[i] > a[j]) 8 { 9 int temp = a[i]; 10 a[i] = a[j]; 11 a[j] = temp; 12 } 13 } 14 } 15 }
1 static void sort(int[] a) 2 { 3 for (int i = 0; i < a.Length; i++) 4 { 5 for (int j = i; j < a.Length; j++) 6 { 7 if (a[i] > a[j]) 8 { 9 int temp = a[i]; 10 a[i] = a[j]; 11 a[j] = temp; 12 } 13 } 14 } 15 }