摘要: class ForFor99{ public static void main(String[] args) { /* 九九乘法表: 1*1=1 1*2=2 2*2=4 1*3=1 2*3=6 3*3=9 ...... */ for(int x=1; x<=9; x++) { for(i... 阅读全文
posted @ 2013-03-29 17:04 馨云 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1.for循环嵌套讲解:class ForForDemo{ public static void main(String[] args) { //大圈套小圈思想: /* for(int x=0; x0; x--) { for(int y=1; yx;y--) { S... 阅读全文
posted @ 2013-03-29 15:26 馨云 阅读(193) 评论(0) 推荐(0) 编辑