用c语言输出杨辉三角
时间: 2023-12-25 18:28:54 浏览: 77
以下是用C语言输出杨辉三角的代码示例:
```c
#include <stdio.h>
int main() {
int arr[10][10] = {0}; // 要先初始化
int a = 1;
int b = 1;
for (a = 0; a < 10; a++) {
arr[a][0] = 1; // 每行首元素是1
for (b = 0; b <= a; b++) {
if (a == b)
arr[a][b] = 1; // 每行末位是1
}
}
// 打印出来看看上面写的对不对
for (a = 0; a < 10; a++) {
for (b = 0; b <= a; b++) {
printf("%d ", arr[a][b]);
}
printf("\n");
}
return 0;
}
```
相关问题
用c语言输出杨辉三角形的前10行。
以下是输出杨辉三角形前10行的C语言代码:
```c
#include <stdio.h>
int main() {
int rows = 10;
int coef = 1;
for (int i = 0; i < rows; i++) {
for (int space = 1; space < rows - i; space++) {
printf(" ");
}
for (int j = 0; j <= i; j++) {
if (j == 0 || i == 0) {
coef = 1;
} else {
coef = coef * (i - j + 1) / j;
}
printf("%d ", coef);
}
printf("\n");
}
return 0;
}
```
输出结果:
```
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
1 8 28 56 70 56 28 8 1
1 9 36 84 126 126 84 36 9 1
```
用c语言输出杨辉三角形 输出一个以下的杨辉三角形,要求输出10行 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
以下是使用C语言输出杨辉三角形的代码:
```c
#include <stdio.h>
int main() {
int n = 10;
int triangle[n][n];
// 初始化第一行为1
triangle[0][0] = 1;
// 逐行计算杨辉三角形
for (int i = 1; i < n; i++) {
// 第一个和最后一个元素都是1
triangle[i][0] = 1;
triangle[i][i] = 1;
// 中间元素等于上一行的两个元素之和
for (int j = 1; j < i; j++) {
triangle[i][j] = triangle[i-1][j-1] + triangle[i-1][j];
}
}
// 输出杨辉三角形
for (int i = 0; i < n; i++) {
for (int j = 0; j <= i; j++) {
printf("%d ", triangle[i][j]);
}
printf("\n");
}
return 0;
}
```
输出结果为:
```
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
1 8 28 56 70 56 28 8 1
1 9 36 84 126 126 84 36 9 1
```
阅读全文