1224: 练37.3 图形的窍门2
Memory Limit:64 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:47
Solved:29
Description
试编一个程序,输出如图所示的n行星号三角形 。
输入n,比如n为5
输出
* *** ***** ******* ********* |
Input
一个数n
Output
如图所示的n行三角形。
Sample Input Copy
5
Sample Output Copy
*
***
*****
*******
*********