求助:如何用Java编译实现杨辉三角的倒三角形式的输出?

输出形式如下所示:(以*代替了杨辉三角的数值……)
******
*****
****
***
**
*

 class Untitled {
    public static void main(String[] args) {
        int rows = 6;

        for(int i =rows - 1;i>= 0;i--) {
            int number = 1;
            for(int j=0;j<=i;j++) {
                 System.out.format("%4d",number);
                 number = number * (i - j) / (j + 1);                
            }
            System.out.println();
        }
    }
}

1 5 10 10 5 1
1 4 6 4 1
1 3 3 1
1 2 1
1 1
1