-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1021.c
73 lines (68 loc) · 1.53 KB
/
1021.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
72
73
#include<stdio.h>
//int main()
//{
// int a =0;
// int b = 0;
// int c = 0;
// int d = 0;
// int e = 0;
// for(a=1;a<=5;a++)
// {
// for(b=1;b<=5;b++)
// {
// for(c=1;c<=5;c++)
// {
// for(d=1;d<=5;d++)
// {
// for(e=1;e<=5;e++)
// {
// if( ( (b==2)+(a==3)==1 )
// &&( (b==2)+(e==4)==1 )
// &&( (c==1)+(d==2)==1 )
// &&( (e==4)+(a==1)==1 ))
// {
// if(a+b+d+d+e == 15 &&a*b*c*d*e ==120)
// {
// printf("a=%d b=%d c=%d d=%d e=%d\n",a,b,c,d,e)
// }
// }
// }
// }
// }
// }
// }
//}
int main()
{
int arr[10][10]={0};
int i = 0;
int j = 0;
for(i=0;i<10;i++)
{
for(j=0;j<=i;j++)
{
if(j== 0 )
{
arr[i][j]=1;
}
if(i == j)
{
arr[i][j]=1;
}
if(i>=2 && j>=1)
{
arr[i][j] = arr[i-1][j-1]+arr[i-1][j];
}
}
}
for(i=0;i<10;i++)
{
for(j=0;j<=i;j++)
{
printf("%5d",arr[i][j]);
}
printf("\n");
}
return 0;
}
//free只会释放空间,不会给指针变量赋值,包括NULL