九九乘法表(参考网上)

public class XQ {

    public static void main(String[] args) {

        for(int i=1;i<=9;i++){
               for(int j=1;j<=i;j++){
                   System.out.print(j+"*"+i+"="+(i*j)+" ");
                }
                System.out.println();
            }
        


        }

        // TODO 自动生成的方法存根

    }

原文地址:https://www.cnblogs.com/youshashuosha/p/5020675.html