Problem3985--【入门】字符图形7-星号菱形

3985: 【入门】字符图形7-星号菱形

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

Submit

Description

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

Input

一个整数(0<N<10)

Output

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

□□×

□×××

×××××

□×××

□□×

Sample Input Copy

2

Sample Output Copy

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

Source/Category