SHOWFACT.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. int factorial(int value)
  3.  {
  4.    printf("In factorial with the value %dn", value);
  5.    if (value == 1)
  6.     {
  7.       printf("Returning the value 1n");
  8.       return(1);
  9.     }
  10.    else
  11.     { 
  12.       printf("Returning %d * factorial(%d)n", 
  13.          value, value-1);
  14.       return(value * factorial(value-1));
  15.     }
  16.  }
  17. void main(void)
  18.  {
  19.    printf("The factorial of 4 is %dn", factorial(4));
  20.  }