码迷,mamicode.com
首页 > 其他好文 > 详细

打印乘法口诀表练习 Mul

时间:2014-07-22 23:10:55      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   for   

mamicode.com,码迷
public class Mul {

    public static void main(String[] args) {

        // 第一种方法
        for (int i = 1; i <= 9; i++) {
            for (int j = 1; j <= 9; j++) {
                if (i <= j)
                    System.out.print(i + "*" + j + "=" + (i * j) + "    ");
            }
            System.out.println();
        }

        // 第二种方法
        for (int i = 1, j = 1; i <= 9; j++) {
            System.out.print(i + "*" + j + "=" + (i * j) + "    ");
            if (j == 9) {
                j = i;
                i++;
                System.out.println();
            }
        }
    }
}
mamicode.com,码迷

 

打印乘法口诀表练习 Mul,码迷,mamicode.com

打印乘法口诀表练习 Mul

标签:style   blog   http   java   color   for   

原文地址:http://www.cnblogs.com/mycome/p/3700219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!