3943: 练38.4 金字塔
Memory Limit:64 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:124
Solved:73
Description
输入一个正整数$n$,生成一个层数为$n$的金字塔。详细图形请看样例。注意$n=1$时就没有地板了。
Input
第一行一个整数$n$($1≤n≤100$),表示层数。
Output
输出$n$层金字塔,注意金字塔是完全对称的,在金字塔的右侧也需要输出与左侧相同的空格。
Sample Input Copy
10
Sample Output Copy
/\
/__\
/____\
/______\
/________\
/__________\
/____________\
/______________\
/________________\
/__________________\