1237: 斜三角填数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:21
Solved:11
Description
输入正数N(N<=30),输出下列形状的三角形。例如:当N=5时输出:
11
7 12
4 8 13
2 5 9 14
1 3 6 10 15
11
7 12
4 8 13
2 5 9 14
1 3 6 10 15
Input
自然数N(N<=30)
Output
按要求输出n个斜行,要求每个数据元素占4个字符宽度输出。
Python控制输出宽度:
print(f"{变量名:4d}")
C++:
#include<iomanip>
cout<<setw(4)<< 变量名;
或
printf("%4d", 变量名)
Python控制输出宽度:
print(f"{变量名:4d}")
C++:
#include<iomanip>
cout<<setw(4)<< 变量名;
或
printf("%4d", 变量名)
Sample Input Copy
5
Sample Output Copy
11
7 12
4 8 13
2 5 9 14
1 3 6 10 15