乘法口诀表 JAVA代码

 1 package zjy;
 2 
 3 public class Cfkj1_1 {
 4     public static void main(String[] args) {
 5         int i=1,j=1;
 6         for(i=1;i<=9;i++){
 7             for( j=1;j<=i;j++){
 8             System.out.print(i+"x"+j+"="+(i*j)+"|");
 9             }
10         System.out.println("");
11         
12         }
13         
14     }
15 }    
16         
17         
乘法口诀

原文地址:https://www.cnblogs.com/zjy954/p/5020422.html