用c语言输出杨辉三角形
时间: 2023-09-21 17:11:27 浏览: 367
输出杨辉三角形 c语言
4星 · 用户满意度95%
以下是用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;
}
```
这个代码会要求用户输入杨辉三角形的行数,然后使用循环来逐行输出。在每行中,第一个循环用于输出空格,第二个循环用于计算并输出该行的系数。输出格式使用了 `%4d`,以保证每个数占据四个字符的宽度。
阅读全文