1250 画倒三角图形
Time Limit : 2000/1000 MS(Java/Others) | Memory Limit : 65536/32768 KB(Java/Others)
Submits : 3169 | Solved : 2056
Description
给定一个整数n,打印由“*”组成的倒三角图案。
Input
输入一个整数n
Output
输出由“*”组成的倒三角图案。见样例输出。
Sample Input
5
Sample Output
***** **** *** ** *
HINT
Source
NBU OJ