-
Notifications
You must be signed in to change notification settings - Fork 0
/
15.c
42 lines (38 loc) · 808 Bytes
/
15.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
/*************************************************************************
> File Name: 15.c
> Author: qusijun
> Mail: [email protected]
> Created Time: 2014年05月19日 星期一 17时04分49秒
************************************************************************/
#include<stdio.h>
long long sum[21][21];
void init(void)
{
for(int i = 0;i<21;i++)
{
for(int j = 0;j<21;j++)
{
sum[i][j] = 1;
}
}
}
void routes(int x,int y)
{
for(int i = 0;i<x;i++)
{
for(int j = 0;j<y;j++)
{
if(j!=0 && i != 0)
{
sum[i][j] = sum[i-1][j]+sum[i][j-1];
}
}
}
}
int main(void)
{
init();
routes(21,21);
printf("%lld",sum[20][20]);
return 0;
}