How to write code for the Pascal’s Triangle in the C language?

Here is a code example in C language to implement Pascal’s Triangle.

#include <stdio.h>

int main() {
    int rows, coef = 1, space, i, j;

    printf("请输入杨辉三角形的行数:");
    scanf("%d", &rows);

    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;
}

Run the program and input the desired number of rows, it will print out the corresponding Pascal’s Triangle.

bannerAds