2273: 打印金字塔

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:11 Solved:8

Description

给定一个整数 n,请打印一个具有 nn层结构的三角形金字塔,例如当 n=3 时,打印如下图形:
         /\ 
       /__\ 
      /\   /\
    /__\/__\ 
   /\   /\   /\
 /__\/__\/__\

Input

单个整数:表示 n 金字塔的层数;

Output

根据题意输出层次为 n的三角形金字塔。

Sample Input

8

Sample Output

               /\ 
              /__\
             /\  /\ 
            /__\/__\
           /\  /\  /\ 
          /__\/__\/__\
         /\  /\  /\  /\ 
        /__\/__\/__\/__\
       /\  /\  /\  /\  /\ 
      /__\/__\/__\/__\/__\
     /\  /\  /\  /\  /\  /\ 
    /__\/__\/__\/__\/__\/__\
   /\  /\  /\  /\  /\  /\  /\ 
  /__\/__\/__\/__\/__\/__\/__\
 /\  /\  /\  /\  /\  /\  /\  /\ 
/__\/__\/__\/__\/__\/__\/__\/__\

HINT

数据范围: 1≤n≤30。