0
|
1
|
|
2 main(ac,av)
|
|
3 int ac;
|
|
4 char *av[];
|
|
5 {
|
|
6 if (ac>1)
|
|
7 goto code1(av,return);
|
172
|
8 goto code1(ac,av,exit1);
|
|
9 }
|
|
10
|
|
11 code exit1(int ac,int av)
|
|
12 {
|
|
13 exit(0);
|
0
|
14 }
|
|
15
|
|
16 code code3(a,b,c,d,e,f)
|
|
17 char a,b;
|
|
18 int c,d,e,f;
|
|
19 {
|
|
20 if(a)
|
|
21 goto code3(a,b,c,d,e,f);
|
|
22 else
|
|
23 goto code3(a+3,b+3,c+3,d+3,e+3,f+3);
|
|
24 }
|
|
25
|
|
26 code code4(a,b,c,d,e,f)
|
|
27 char a,b;
|
|
28 int c,d,e,f;
|
|
29 {
|
|
30 int i,j;
|
|
31 if(a)
|
|
32 goto code3(a,b,c,d,e,f);
|
|
33 else
|
|
34 goto code3(a+i,b+j,c+i,d+3,e+3,f+3);
|
|
35 }
|
|
36
|
|
37 code code0(ac,av)
|
|
38 int ac;
|
|
39 char *av[];
|
|
40 {
|
|
41 goto code0(ac,av);
|
|
42 }
|
|
43
|
172
|
44 code code1(ac,av,exit)
|
|
45 int ac,exit;
|
0
|
46 char *av[];
|
|
47 {
|
|
48 code (*f)();
|
172
|
49 f = exit;
|
0
|
50 if (ac>3)
|
|
51 goto code1(ac,av);
|
|
52 else if (ac>2)
|
|
53 goto code1(av,ac);
|
|
54 else
|
|
55 goto (*f)(ac,av);
|
|
56 }
|