摘要: public class Demo15Continue { public static void main(String[] args) { for (int i = 1;i <= 10; i++){ if( i==4 ){ continue;//如果当前是4直接跳过进入第五层 } System.o 阅读全文
posted @ 2021-11-22 10:15 TTTX 阅读(32) 评论(0) 推荐(0)