c语言求阶乘精确值示例
更新时间:2014年03月28日 09:56:08 作者:
这篇文章主要介绍了c语言求阶乘精确值示例,需要的朋友可以参考下
复制代码 代码如下:
#include <stdio.h>
#include <string.h>
const int maxn = 3000;
int f[maxn];
int main()
{
int i,j,n;
scanf("%d",&n);
memset(f,0,sizeof(f));
f[0] = 1;
for(i = 2;i <= n;i++)
{
int c = 0;
for(j = 0;j < maxn;j++)
{
int s = f[j] * i + c;
f[j] = s % 10;
c = s / 10;
}
}
for(j = maxn - 1;j >= 0;j--) if(f[j]) break;
for(i = j;i >= 0;i--) printf("%d",f[i]);
printf("\n");
return 0;
}
相关文章
C++ shared_ptr智能指针reset()使用示例详解
这篇文章主要为大家介绍了C++ shared_ptr智能指针reset()使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-08-08Sublime Text 3 实现C++代码的编译和运行示例
下面小编就为大家带来一篇Sublime Text 3 实现C++代码的编译和运行示例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-09-09
最新评论