1644: 【c09】画U型图案▅
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:3
Description
根据输入的正整数n,画出如图所示的U型图案。
例如n=3时,图案为:
* *
* *
***
Input
输入1个正整数n(3 <=n<=20),表示这个U型图案的宽和高。
Output
根据题目描述,输出对应的图案。
注意事项:
1、图案的第一行前面不能有多余的空行;
2、图案的最左侧从第一列开始输出,左边不能有多余的空格。
Sample Input Copy
5
Sample Output Copy
* *
* *
* *
* *
*****