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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <time.h>
  3. float add_em(long int a, float b)
  4.  {
  5.     float result;
  6.     result = a + b;
  7.     return(result);
  8.  }
  9.  void main(void)
  10.   {
  11.     long int i;
  12.     float result = 0;
  13.     time_t start_time, stop_time;
  14.     printf("Working...n");
  15.     time(&start_time);
  16.     for (i = 1; i <= 100000L; i++)
  17.       result += i;
  18.     time(&stop_time);
  19.     printf("Using loop %d secondsn", stop_time - start_time);
  20.     printf("Working...n");
  21.     time(&start_time);
  22.     for (i = 1; i <= 100000L; i++)
  23.       result = add_em(i, result);
  24.     time(&stop_time);
  25.     printf("Using function %d secondsn", stop_time - start_time);
  26.  }