[單項選擇題] 有如下程序 public class Sun {public static void main (String args[ ]){ int
2021-07-20
[單項選擇題] 有如下程序 public class Sun {public static void main (String args[ ]){ int a=2, b=1, c=2; if (a<B)if (b<0) if (c<0) c=0; elsec++; System. out.println(C) ;} } 上述程序的運行結果是( )。
A.0
B.1
C.2
D.3
正確答案:D
參考解析:本題考查對if-else條件語句的理解。該題是if語句的多重嵌套結構,首先 a=2,b=1,執(zhí)行第1重if條件語句,由于a<b滿足條件,繼續(xù)執(zhí)行第2重if條件語句,b<0件滿足執(zhí)行第3重if條件語句,由于c>0不滿足條件,執(zhí)行else分支語句c++,c=3。
詞條內容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域專業(yè)人士。