杨辉三角c语言程序8行
时间: 2023-12-04 18:41:39 浏览: 136
杨辉三角c语言程序实现
以下是C语言实现杨辉三角的8行代码:
```c
#include <stdio.h>
int main()
{
int n, i, j, a[10][10];
printf("Enter the number of rows:\n");
scanf("%d", &n);
for (i = 0; i < n; i++)
{
for (j = 0; j <= i; j++)
{
if (j == 0 || i == j)
a[i][j] = 1;
else
a[i][j] = a[i - 1][j - 1] + a[i - 1][j];
printf("%d ", a[i][j]);
}
printf("\n");
}
return 0;
}
```
阅读全文