登录  注册

首页->java基础知识

以下输出是什么 ?class LowHighSwap{ static void doIt( int[] z ) { int temp = z[z.length-1]; z[z.length-1] = z[0]; z[0] = temp; }}class TestIt{ public static void main( String[] args ) { int[] myArray = {1, 2, 3, 4, 5}; LowHighSwap.doIt(myArray); for (int i = 0; i < myArray.length; i++) { System.out.print(myArray[i] + " "); } }}

(A)1 2 3 4 5

(B)5 2 3 4 1

(C)1 2 3 4 1

(D)5 2 3 4 5

参考答案
继续答题:下一题
微考学堂微考学社

更多java基础知识试题

考试