用Java写一个打印9*9乘法表的程序,实现结果如下图:
9*9 9*8 9*7 9*6 9*5  ………………
8*8 8*7  ………………  
7*7 7*6  ………………
…………
…………
1*1
代码:
public class exercise {
    public static void main(String[] args) {
        for(int i =9;i>=1;i--) {
            for(int j=i;j>=1;j--) {
                System.out.print(j+"*"+i+"="+(i*j)+"\t");
            }
            System.out.println();
        }
    }
}

乘法表正序输出代码为:

public class exercise{
    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 on 2021-01-17 21:21  史振兴  阅读(293)  评论(0编辑  收藏  举报