2497: 【入门】数字矩形(2)
Memory Limit:16 MB
Time Limit:1.000 S
Submit数:5
Solved数:5
Description
从键盘读入一个整数n,输出如下图形
如:n=3,输出
123
123
123
如:n = 5,输出
12345
12345
12345
12345
12345
Input描述
一个整数n(n<=10)
Output描述
输出n行的图形
Sample Input Copy
3
Sample Output Copy
123 123 123
Source/Category
⋮