杨辉三角用c语言表示
时间: 2023-10-11 12:11:32 浏览: 143
c语言程序实现杨辉三角
以下是用C语言实现杨辉三角的代码:
```
#include <stdio.h>
int main() {
int rows, coef = 1;
printf("请输入行数: ");
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;
}
```
运行程序后,您可以输入要输出的杨辉三角的行数,程序将输出相应的杨辉三角。
阅读全文