fork download
  1. #include<iostream>
  2.  
  3. #define N 10000
  4.  
  5. using namespace std;
  6.  
  7.  
  8.  
  9. struct stack{
  10.  
  11. int stackarray[N];
  12.  
  13. int sp;
  14.  
  15.  
  16.  
  17.  
  18.  
  19. };
  20.  
  21. stack s;
  22.  
  23. stack p;
  24.  
  25.  
  26.  
  27.  
  28.  
  29. int push(stack *,int);
  30.  
  31. int pop(stack *);
  32.  
  33. void printstack(stack *);
  34.  
  35. int isempty(stack *);
  36.  
  37. int isfull(stack *);
  38.  
  39. void move(int,char,char,char);
  40.  
  41. int fact(int n);
  42.  
  43.  
  44.  
  45. int main(){
  46.  
  47.  
  48.  
  49. s.sp=-1;
  50.  
  51. p.sp=-1;
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59. cout<<fact(6)<<endl;
  60.  
  61.  
  62.  
  63.  
  64.  
  65. system("pause");
  66.  
  67. return 0;
  68.  
  69.  
  70.  
  71.  
  72.  
  73. }
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81. int fact(int n){
  82.  
  83. int r;
  84.  
  85.  
  86.  
  87. L0:
  88.  
  89. if(n>0){
  90.  
  91. push(&p,1);push(&p,n);
  92.  
  93. n--;
  94.  
  95. goto L0;
  96.  
  97.  
  98.  
  99.  
  100.  
  101. }
  102.  
  103. else
  104.  
  105. r=1;
  106.  
  107.  
  108.  
  109.  
  110.  
  111. L1:
  112.  
  113. r=r*n;
  114.  
  115.  
  116.  
  117. if(!isempty(&p)){
  118.  
  119. n=pop(&p);
  120.  
  121. switch(pop(&p)){
  122.  
  123. case 1:goto L1;break;
  124.  
  125. }
  126.  
  127. }
  128.  
  129. else
  130.  
  131. return r;
  132.  
  133.  
  134.  
  135.  
  136.  
  137. }
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149. int push(stack *p,int x){
  150.  
  151. if(isfull(p))
  152.  
  153. return 1;
  154.  
  155. p->sp++;
  156.  
  157. p->stackarray[p->sp]=x;
  158.  
  159.  
  160.  
  161. }
  162.  
  163.  
  164.  
  165. int pop(stack *p){
  166.  
  167. if(isempty(p))
  168.  
  169. return 1;
  170.  
  171. else
  172.  
  173. return p->stackarray[p->sp--];
  174.  
  175.  
  176.  
  177.  
  178.  
  179. }
  180.  
  181.  
  182.  
  183. int isempty(stack *p){
  184.  
  185. if(p->sp==-1)
  186.  
  187. return 1;
  188.  
  189. else
  190.  
  191. return 0;
  192.  
  193. }
  194.  
  195.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:65: error: ‘system’ was not declared in this scope
stdout
Standard output is empty