Java经典编程题50道之十六

输出九九乘法表。

public class Example16 {
    public static void main(String[] args) {
        table(9);
    }

    public static void table(int n) {
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print(j + "*" + i + "=" + j * i+"\t");
            }
            System.out.println();
        }
    }
}

posted @ 2017-06-04 21:31  本宫在,尔等都是妃  Views(245)  Comments(0Edit  收藏  举报