int c = input.nextInt(); System.out.print("查找的数字的位置为(不在数组的元素输出的位置为-1):"); int d = ll.HalfSearch(a, c); System.out.print(d); System.out.println(); System.out.print("距离平均值最近的数为:"); int e = ll.Closeaverage(a); System.out.print(e); System....