笔试题 输出金字塔 面试经典

public class jinzita {

    
public static void main(String[] args) {
        
for (int i = 1; i < 10; i++) {
            
for (int j = 8; j >= i; j--) {
                System.out.print(
"*");
            }
            
for (int j = 1; j <i; j++) {
                System.out.print(j);
            }
            
for (int j = i; j > 0; j--) {
                System.out.print(j);
            }
            System.out.println();
        }
    }
}

结果为:

********1

*******121
******12321
*****1234321
****123454321
***12345654321
**1234567654321
*123456787654321
12345678987654321

原文地址:https://www.cnblogs.com/zhonghan/p/1446831.html