⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pr0722.cpp

📁 practice c++, it is from the book http://www.amazon.com/Schaums-Outline-Programming-John-Hubbard
💻 CPP
字号:
//  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -