Problem9448--数字走向5

9448: 数字走向5

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

Description

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

Input

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

Output

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

Sample 1 Input

5

Sample 1 Output

 25 24 23 22 21
 20 19 18 17 16
 15 14 13 12 11
 10  9  8  7  6
  5  4  3  2  1

Source/Category

1.6.二维数组