Problem E: 打印金字塔
[Creator : ]
Description
给定一个整数 ,请打印一个具有 层结构的三角形金字塔,例如当 时,打印如下图形:
/\
/__\
/\ /\
/__\/__\
/\ /\ /\
/__\/__\/__\
Input
单个整数:表示 。。
Output
根据题意输出层次为 的三角形金字塔。
Sample Input Copy
3
Sample Output Copy
/\
/__\
/\ /\
/__\/__\
/\ /\ /\
/__\/__\/__\