Problem3516--星号菱形

3516: 星号菱形

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

Description

输入一个整数打印字符图形

Input

一个整数(0<N<10)

Output

一个字符图形,如输入2,则产生5行的菱形:

□□×

□×××

×××××

□×××

□□×

Sample Input Copy

2

Sample Output Copy

  *
 ***
*****
 ***
  *

Source/Category