摘要: public class t8 { public static void main(String[] args) { //上半部分 for (int m = 1; m <= 10; m++) { //输出空格 for (int n = 9; n >= m ;n--) { System.out.pri 阅读全文
posted @ 2016-02-26 15:39 什么玩楞啊,我叫旺仔 阅读(24850) 评论(0) 推荐(0)
摘要: public class t8 { public static void main(String[] args) { //输出99乘法表 for(int m=1;m<=9;m++) { for(int n=1;n<=m;n++) { System.out.print(m+"*"+n+"="+(m*n 阅读全文
posted @ 2016-02-26 10:18 什么玩楞啊,我叫旺仔 阅读(299) 评论(0) 推荐(0)