用c语言打印杨辉三角的前十行
时间: 2023-08-27 09:06:59 浏览: 100
好的,以下是用C语言打印杨辉三角前十行的代码:
```
#include<stdio.h>
int main()
{
int rows, i, j, coef;
printf("Enter the number of rows: ");
scanf("%d",&rows);
printf("The Pascal's Triangle for the first %d rows is:\n",rows);
for(i=0;i<rows;i++)
{
coef = 1;
for(j=1;j<=rows-i;j++)
printf(" ");
for(j=0;j<=i;j++)
{
printf("%4d",coef);
coef = coef * (i - j) / (j + 1);
}
printf("\n");
}
return 0;
}
```
希望能解答您的问题!
相关问题
c语言求杨辉三角前n行数据
以下是用 C 语言实现求杨辉三角前 n 行数据的代码:
```c
#include <stdio.h>
int main() {
int n;
printf("请输入要求的杨辉三角行数:");
scanf("%d", &n);
int a[n][n]; // 定义一个二维数组存储杨辉三角
for (int i = 0; i < n; i++) {
a[i][0] = 1;
for (int j = 1; j <= i; j++) {
a[i][j] = a[i-1][j-1] + a[i-1][j]; // 杨辉三角递推公式
}
}
// 输出杨辉三角
for (int i = 0; i < n; i++) {
for (int j = 0; j <= i; j++) {
printf("%d ", a[i][j]);
}
printf("\n");
}
return 0;
}
```
运行程序后,输入要求的杨辉三角行数,即可输出杨辉三角的前 n 行数据。
c语言打印杨辉三角6行
以下是使用C语言打印杨辉三角6行的代码:
```c
#include <stdio.h>
int main() {
int rows = 6, coef = 1, space, i, j;
for (i = 0; i < rows; i++) {
for (space = 1; space < rows - i; space++)
printf(" ");
for (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;
}
```
运行代码后,将会输出以下结果:
```
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
```
阅读全文