输出九九乘法表

1         int c = 10;
2         for(int a = 9; a >= 1; a--)
3         {
4             for(int b = 9; b >= a; b--)
5             {
6                 System.out.print((c-b)+"x"+(c-a)+"="+((c-a)*(c-b))+"  ");
7             }
8             System.out.println();
9         }

原文地址:https://www.cnblogs.com/wgbs25673578/p/4868337.html