使用for循环打印乘法口诀表。

使⽤用for循环打印乘法口诀表。

public class Test {

    
    public static void main(String[] args) {
        for (int i = 1; i < 10; i++) {
            for (int j = i; j <10; j++) {
                System.out.print(i+"*"+j+"="+i*j+"\t");
            }
            System.out.println();
        }

        }
    }

使用for循环打印乘法口诀表。_第1张图片

你可能感兴趣的:(使用for循环打印乘法口诀表。)