九九乘法表

public class TestJj{

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)+"\t");
}
System.out.println();
}
}

}

posted @ 2018-05-18 20:56  火丶日月明  阅读(140)  评论(0)    收藏  举报