C语言,在命令行输出杨辉三角


#include <stdio.h>
#include <stdlib.h>

void yanghui_num(int * yanghui, int n);
int yh_one_num(int n, int i);

int main(void)
{
    int n;
    int i,j;
    printf("请输入要输出杨辉三角的行数:");
    scanf("%d", &n);

    char * space = (char *)malloc(sizeof(char) * (n * 2 + 1));
    if(space == NULL)
        exit(1);
    for(i = 0; i < n * 2; i++)
        *(space + i) = ' ';
    *(space + i) = '\0';

    int * yanghui = (int *)malloc(sizeof(int) * (n + 1));

    for(i = 0; i < n; i++)
    {
        yanghui_num(yanghui, i);
        printf("%s", space + i * 2);
        for(j = 0; j <= i; j++)
            printf("-  ", *(yanghui + j));
        printf("\n");
    }

    free(space);
    free(yanghui);
    space = NULL;
    yanghui = NULL;

    return 0;
}

void yanghui_num(int * yanghui, int n)
{
    int i;
    for(i = 0; i <= n; i++)
        *(yanghui + i) = yh_one_num(n, i);
}

int yh_one_num(int n, int i)
{
    int numerator = 1, denominator = 1;
    int j;
    if(i == 0)
        return 1;
    for(j = 0; j < i; j++)
    {
        numerator *= (n - j);
        denominator *= (j + 1);
    }
    return numerator / denominator;
}


转载于:https://my.oschina.net/lovewxm/blog/208714

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值