入门级杨辉三角10行c语言
时间: 2024-05-01 12:23:55 浏览: 61
杨辉三角c语言版
以下是10行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 j = 0; j <= i; j++) {
if (j == 0 || i == 0)
coef = 1;
else
coef = coef * (i - j + 1) / j;
printf("%d ", coef);
}
printf("\n");
}
return 0;
}
```
运行程序后,输入要生成的杨辉三角的行数,即可输出对应的杨辉三角。
阅读全文