1261: 输出高度为n的数字斜塔(1)向右变大
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:17
Solved:8
Description
输入一个n。输出高度为n的数字斜塔,并且第一层为1,第二层为12,第三层为123.第四层为1234....以此类推
Input
一个数字n
Output
按要求输出数字斜塔
Sample Input Copy
5
Sample Output Copy
1
12
123
1234
12345