杨辉三角c语言程序
时间: 2023-08-08 10:09:32 浏览: 128
杨辉三角的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;
}
```
运行时,程序会要求用户输入杨辉三角的行数,然后输出相应的杨辉三角。
阅读全文