[填空題] 下列程序段的輸出結果是 【13】 。 public class Test { void printValue(int m) { do { S
2021-07-20
[填空題] 下列程序段的輸出結果是 【13】 。 public class Test { void printValue(int m) { do { System.out.println("The value is"+m); }while (--m>10); } public static void main (String args[]) { int i=10; Test t= new Test(); t.printValue(i); } }
正確答案:Thevalue is 10
參考解析:本題考查do-while循環(huán)的用法。do-while至少執(zhí)行一次,在執(zhí)行完do中的內(nèi)容后,判斷while中的條件是否為true。如果為true,就再執(zhí)行do中的內(nèi)容,然后再進行判斷。依次類推,直到while的判斷為false時退出循環(huán),執(zhí)行循環(huán)后面的內(nèi)容。題目中m的值為10,當程序運行到do-while循環(huán)時,程序先執(zhí)行一次循環(huán)然后再作判斷,在判斷條件--m>10時,其值為false,退出循環(huán)。因此只執(zhí)行了一次輸出操作,輸出內(nèi)容為:The value is 10。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。