Problem4755--金字塔

4755: 金字塔

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

Description

输入一个正整数 $n$,生成一个层数为 $n$ 的金字塔。详细图形请看样例。注意 $n=1$ 时,就没有地板了。

Input

第一行一个整数 $n\ (1\le n\le 100)$,表示层数。

Output

输出 $n$ 层金字塔,注意金字塔是完全对称的,在金字塔的右侧也需要输出与左侧相同的空格。

Sample 1 Input

10

Sample 1 Output

         /\
        /__\
       /____\
      /______\
     /________\
    /__________\
   /____________\
  /______________\
 /________________\
/__________________\

Source/Category

C++语法 1.4.循环结构