#T4. 星号金字塔I
星号金字塔I
Background
Special for beginners, ^_^
Description
让计算机输出一个5行的星号金字塔 如样例所示。
Format
Input
无
Output
五行星号,相邻两个号之间有一个空格,并且:
第一行号前有4个空格
第二行号前有3个空格
第三行号前有2个空格
第四行号前有1个空格
第五行号前没有空格。
Samples
*
* *
* * *
* * * *
* * * * *
Limitation
1s, 1024KiB for each test case.