摘要:
1、都知道跳出循环可以使用break,作用于循环中最里层的语句。 1 public class TestDemo { 2 3 /** 4 * @param args 5 */ 6 public static void main(String[] args) { 7 // TODO Auto-generated method stub 8 for(int rowNum = 1;rowNum <= 3;) 9 {10 System.out.print((2 + rowNum)+" ");1... 阅读全文