C语言-基础教程-C语言程序应用举例

2014-11-23 23:10:45 · 作者: · 浏览: 125

  这是一个递归函数调用的例子。程序中函数f o r w a r d _ a n d _ b a c k w a r d s ( )的功能是显示一个字符串后反向显示该字符串。
  [例4-17] 计算1~7的平方及平方和。
  #include
  # include
  void header(); / *函数声明* /
  void square(int number);
  void ending();
  int sum; /* 全局变量* /
  m a i n ( )
  {
  int index;
  h e a d e r ( ) ; / *函数调用* /
  for (index = 1;index <= 7;i n d e x )
  s q u a r e ( i n d e x ) ;
  e n d i n g ( ) ; / *结束* /
  }
  void header()

  {
  sum = 0; /* 初始化变量"sum" */
  printf("This is the header for the square program\n;\n")
  }
  void square(int number)
  {
  int numsq;
  numsq = number * numbe;r
  sum = numsq;
  printf("The square of %d is %d\,nn"u m b e r ,nu m s q ) ;
  }
  void ending()
  {
  printf("\nThe sum of the squares is %d,\ns"u m ) ;
  }