【编程】用二维数组编程计算并输出n(n<20)行杨辉三角形。 【要求】编程实现:都入口值,生成n阶杨辉三角并技样张格式输出(杨辉三角每行第一个元素及对角线元素值为1,其余的元素值为其上一行上一列的元素和其上一行同列的元素之和。) 【特别提示】 (1) 要求使用for语句实现: (2) 每个数据的输出宽度设置为6 (3) 使用己定义的变量,不再另外定义, ④使用setw(6) 设置都出数据的宽度。 #include <iostream> #include <iomanip) using namespace std; Bint main const int N=20; int a[N] [N]: int i, j, n; cout<<"Input n (n<20) cin>>n;
时间: 2024-03-08 16:45:48 浏览: 105
好的,以下是符合要求的 C++ 代码:
```c++
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
const int N = 20;
int a[N][N];
int n;
cout << "Input n (n<20): ";
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j <= i; j++) {
if (j == 0 || j == i) {
a[i][j] = 1;
} else {
a[i][j] = a[i-1][j-1] + a[i-1][j];
}
cout << setw(6) << a[i][j];
}
cout << endl;
}
return 0;
}
```
输入格式为:
```
Input n (n<20): 8
```
输出格式为:
```
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1
1 7 21 35 35 21 7 1
```
阅读全文