[填空題] 下列程序的執(zhí)行結果是 【11】 。 import j ava. io. *; public class ArrayTest { public s
2021-07-20
[填空題] 下列程序的執(zhí)行結果是 【11】 。 import j ava. io. *; public class ArrayTest { public static void main(String args[]) {int i;int a[ ] = new int[5];for( i=0;i<5;i++ ) a[i] = i;for ( i=a. length-1; i>=0; i-- ) System.out.print( "a["+i+"]="+a[i] ); } }
正確答案:a[4]=4
參考解析:注意數(shù)組的下標是從0~數(shù)組名.length-1。本題示范了如何創(chuàng)建數(shù)組,對每個數(shù)組元素賦值,按數(shù)組元素的下標逆序輸出。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。