九九乘法表

 1 for(int i = 1;i <= 9;i++)
 2         {
 3             for(int j = 1; j <= 9;j++)
 4             {
 5                 if(i >= j)
 6                 {
 7                     System.out.print(j + " * " + i + " = " +( i * j )+ "  ");    
 8                 }
 9             }
10             System.out.println();
11         }

原文地址:https://www.cnblogs.com/name-hanlin/p/4869870.html