1038: 数字金字塔
Memory Limit:128 MB
Time Limit:0.000 S
Judge Style:Text Compare
Creator:
Submit:44
Solved:12
Description
编程打印出n阶数字金字塔,n=5时图案如下:
        1
      121
    12321
  1234321
123454321
Input
一个整数n(n< 10)。
Output
n阶数字塔。
Sample Input Copy
5
Sample Output Copy
1
121
12321
1234321
123454321