用c语言二维数组实现输出杨辉三角形
时间: 2023-10-25 07:27:50 浏览: 290
新建文件夹,c语言杨辉三角用二维数组源码,c语言
好的,以下是用 C 语言二维数组实现输出杨辉三角形的代码:
```c
#include <stdio.h>
int main() {
int rows, coef = 1;
printf("Enter the number of rows: ");
scanf("%d", &rows);
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("%4d", coef);
}
printf("\n");
}
return 0;
}
```
这个程序先让用户输入要输出的杨辉三角形的行数。然后,它使用两个嵌套的 for 循环来遍历二维数组并计算每个元素的值。内部循环计算组合系数,并使用 printf 函数打印它。外部循环控制打印每行的元素。
阅读全文