Problem1549--对角线II

1549: 对角线II

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 16 MiB

Description

输入整数N,输出相应方阵。

Input

一个整数N。( 0 < n < 10 )

Output

一个方阵,每个数字的场宽为3。

Sample Input Copy

5

Sample Output Copy

  0  0  0  0  1
  0  0  0  1  0
  0  0  1  0  0
  0  1  0  0  0
  1  0  0  0  0

Source/Category