c语言写杨辉三角
时间: 2023-07-13 14:05:30 浏览: 130
杨辉三角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 循环来打印杨辉三角。第一个循环用于打印空格,第二个循环用于计算和打印每一行的系数。其中,系数的计算使用了组合数的公式。
阅读全文