MIPI_AdvancedC_FRTK/Lect5/32.c

16 lines
305 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#define N 1000
int main (void) {
int c[N] = {0};
int n;
scanf ("%d", &n);
c[0] = 1;
for (int j = 1; j <= n; j++)
for (int i = j; i >= 1; i--)
c[i] = c[i - 1] + c[i];
for (int i = 0; i <= n; i++)
printf ("%d ", c[i]);
return 0;
}