10、打印九九乘法表

2023-04-04  本文已影响0人  RobertLiu123
//找规律
    public static void main(String[] args) {
        for(int i = 1;i < 2;i++){
            System.out.print(i + "*" + 1 + "=" + (i * 1) + " ");
        }
        System.out.println();
        for(int i = 1;i < 3;i++){
            System.out.print(i + "*" + 2 + "=" + (i * 2) + " ");
        }
        System.out.println();
        for(int i = 1;i < 4;i++){
            System.out.print(i + "*" + 3 + "=" + (i * 3) + " ");
        }
    }
//完整版
    public static void main(String[] args) {
        for(int j = 1;j < 10;j++){
            for(int i = 1;i < j + 1;i++){
                System.out.print(i + "*" + j + "=" + (i * j) + "\t");
            }
            System.out.println();
        }
    }
上一篇 下一篇

猜你喜欢

热点阅读