1746: 【CSP嵌套循环】数字矩形(1)▅
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:12
Solved:12
Description
从键盘读入一个整数 n,输出如下图形 如:n=3 ,输出
111
222
333
如:n=5,输出
11111
22222
33333
44444
55555Input
一个整数 n(n<10 )
Output
输出 n 行的图形。
Sample Input Copy
3
Sample Output Copy
111
222
333