bigfact.cpp

来自「C++&datastructure书籍源码,以前外教提供现在与大家共享」· C++ 代码 · 共 35 行

CPP
35
字号
#include <iostream>#include "prompt.h"#include "bigint.h"using namespace std;// illustrates loop and integer overflowBigInt Factorial(int num);int main(){    int highValue = PromptRange("enter max value for factorial",1,50);    int current = 0;  // compute factorial of this value        while (current <= highValue)    {   cout << current << "! = " << Factorial(current) << endl;        current += 1;    }    return 0;}BigInt Factorial(int num)// precondition: num >= 0// postcondition returns num!{    BigInt product = 1;    int count = 0;    while (count < num)          // invariant: product == count!    {   count += 1;        product *= count;    }    return product;}

⌨️ 快捷键说明

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