Problem9458--图形输出8--倒金字塔

9458: 图形输出8--倒金字塔

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

Description

请编写程序输出一个*组成的n行的倒金字塔

Input

一个正整数n(n>0)

Output

一个n行的倒金字塔

Sample 1 Input

5

Sample 1 Output

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

Source/Category

循环嵌套 1.6.二维数组