求n的阶乘

Posted myyismyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求n的阶乘相关的知识,希望对你有一定的参考价值。

给定一个整数N(0≤N≤10000),求取N的阶乘

#include<iostream>  
using namespace std; 
int main()  
{  
  int result[40000]; //保存结算结果的数组
  int num;  //计算阶乘的数字   
  while(cin>>num)
  {

int height = 1; //结果的最高位

result[0] = 1;
for (int i=1;i<=num;i++)  
  {  
    int res = 0; //进位   
    for (int j=0;j<height;j++)  
    {  
      int buf = result[j] * i + res; //计算结果   
      result[j] = buf % 10;  //取当前位   
      res = buf / 10;   //计算进位   
    }  
    while (res)  
    {  
      result[height++] = res % 10; //取当前位   
      res /= 10;   //计算进位   
    }    
  }    
  for (int k=height-1;k>=0;k--)  
  {  
     cout<<result[k];  
  }  
  cout<<endl;  
  //cout<<"length="<<height<<endl;  
  }
} 

 

以上是关于求n的阶乘的主要内容,如果未能解决你的问题,请参考以下文章

MATLAB:编写一个实现n阶乘的函数?

c语言如何求一个数的阶乘

求n的阶乘VB代码实现

怎么用while语句算5的阶乘?

shell编程递归求阶乘

C语言 求n的阶乘及阶乘和