pr0722.cpp

来自「practice c++, it is from the book http:/」· C++ 代码 · 共 34 行

CPP
34
字号
//  Programming with C++, Second Edition, by John R. Hubbard
//  Copyright McGraw-Hill, 2000
//  Problem 7.22 on page 176
//  The product a function's values

#include <iostream>  // defines the cout object
using namespace std;

int product(int(*)(int),int,int);
int square(int);
int cube(int);

int main()
{ cout << "product(square,3,4) = " << product(square,3,4) << endl;  // 9*16*25*36
  cout << "product(cube,1,3) = " << product(cube,1,3) << endl;    // 1*8*27
}

int product(int (*pf)(int k), int a, int n)
{ // returns the product f(a)*f(a+1)*f(a+2)* . . . *f(a+n-1)
  // where f() = *pf():
  int p = 1;
  for (int x=a; x<a+n; x++)
    p *= (*pf)(x);
  return p;
}

int square(int k)
{ return k*k;
}

int cube(int k)
{ return k*k*k;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?