-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPscaltriangle.c
71 lines (60 loc) · 1.11 KB
/
Pscaltriangle.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include<stdio.h>
int main()
{
int t[100][100]; // Array Declaration
int n, i, j, k, space; // Declaration of variables
printf("Enter height of the triangle : ");
scanf("%d", &n); // Input : height
for(i = 0; i < n; i++) // putting values in pascals triangle using nested for loop
{
for(j = 0; j < n+1; j++)
{
if(i == 0)
{
if(j == 0)
{
t[i][j] = 1;
} else {
t[i][j] = 0;
}
}
else if (i == 1)
{
if( j == 0 || j == 1)
{
t[i][j] = 1;
} else {
t[i][j] = 0;
}
} else {
if(j == 0 || j == i)
{
t[i][j] = 1;
}else{
t[i][j] = t[i-1][j-1] + t[i-1][j]; // calculation of terms in between
}
}
}
}
space = n+1/2; // space
// displaying pascal triangle using proper spacing
for(i = 0; i < n; i++)
{
for(k = space; k > 0; k--)
{
printf("%c", ' ');
}
for(j = 0; j < n+1; j++)
{
if(T[i][j] == 0)
{
printf("%c", ' ');
} else {
printf("%d ", T[i][j]);
}
}
printf("\n");
space-=1;
}
return 0;
}