c 语言输出杨辉三角形
时间: 2023-07-02 21:15:35 浏览: 50
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;
}
```
运行该程序,输入所需的行数即可输出对应行数的杨辉三角形。
阅读全文