阅读下列代码public class Example {public static void main(String[] args) {int[] srcArray = { 11, 12, 13, 14 };int[] destArray = { 21, 22, 23, 24 };System.arraycopy(srcArray, 1, destArray, 2, 2);for (int i = 0; i < destArray.length; i++) {System.out.print(destArray[i] + " ");}}}下列选项中,程序的运行结果是?
答:21 22 12 13
继续答题:下一题