首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
双层if嵌套,while-continue
双层if嵌套,while-continue
tech
2023-05-26
88
//测试if双层嵌套的执行 if (1<6){ System.out.println("--第1句--"); if (6<5){ System.out.println("--第2句--"); } System.out.println("--第3句--"); }else { System.out.println("--第4句--"); } 输出结果:--第1句-- --第3句-- 说明进了if就不会进else,哪怕内层if满不满足条件。
转载请注明原文地址:https://tech.qufami.com/read-10595.html
最新回复
(
0
)