ipow.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2. //
  3. //  File = ipow.cpp
  4. //
  5. //
  6. //-----------------------------------------------------
  7. // raise double to an integer power
  8. double ipow(double x, int m)
  9. {
  10.  int i;
  11.  double result;
  12.  result = 1.0;
  13.  for(i=1; i<=m; i++)
  14.    {
  15.     result *= x;
  16.    }
  17.  return(result);
  18. }