【单选题】class C { public static void main(String[] args) { int[] array = new int[10]; increase(array); System.out.print(array[0]); } public static void increase(int[] array) { for(int i = 0; i < array.length;...
【单选题】What is the output of the following code? class Test { public static void main(String[] args) { int[] array = {1,2}; change(array); change(array[0], array[1]); System.out.println(array[0]+","+array[1]...