2012年11月27日

java嵌套循环语法描述

摘要: 1 /** 2 * 3 * @author qsl 4 * 5 */ 6 public class ChengFaB { 7 public static void main(String[] args) { 8 DD(); 9 }10 11 public static void FF() {//for...for12 for (int i = 1; i < 10; i++) {13 for (int j = 1; j <= i; j++) {14 System.out.p... 阅读全文

posted @ 2012-11-27 09:27 Brown Qin 阅读(342) 评论(0) 推荐(0)

导航