1622: n层奇数三角形 triodd [1*]

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:13

Description

问题:输入n,输出n层的奇数三角形。三角形中的数如超过9,只取个位数字。末行顶格,其余行首及数字间用空格填充,效果见样例

Sample Input Copy

4

Sample Output Copy

   1
  1 3
 1 3 5
1 3 5 7

HINT

数据规模 1<= n <=50