Java阵列第3大号 Java数组第二小数 Java数组最小的数字 Java阵列第3大号 public class Tester { public static int getThirdLargest(int[] a) { int temp; //sort the array for (int i = 0; i < a.length; i++) { for (int j = i + 1; j < a.length; j++) { if (a[i] > a[j]) { temp = a[i]; a[i] = a[j]; a[j] = temp; } } } //return third largest element return a[a.length - 3]; } public static void main(String args[]) { int a[] = { 11,10,4, 15, 16, 13, 2 }; System.out.println("Third Largest: " +getThirdLargest(a)); } } Java数组第二小数 Java数组最小的数字