我写了一个,求十万内的阶乘,附一万与两万的结果
#include "stdio.h"
long s[500000]={0L}; /*存储数据*/
long h=499999L;
int cheng(long num) {
long t=499999L;
h--;
if(num>=10L) h--;
if(num>=100L) h--;
if(num>=1000L) h--;
if(num>=10000L) h--;
while(t!=h) {
s[t]=s[t]*num;
t--;
} t=499999L;
h=h-5L;
while(t!=h) {
s[t-1]+=s[t]/10;
s[t]=s[t]%10;
t--;
}
h=h+5L;
}
int main(void) {
int i;
FILE *output;
s[499999]=1L;
output=fopen("out.txt","w");
for(i=1;i<=20000L;i++) cheng(i);
for(i=0;i<500000L;i++) {
if(i%500==0) fprintf(output,"\n");
fprintf(output,"%ld",s[i]);
}
return 0;
}
DEV-CPP下运行调试通过
My Blog: www.aiexp.info
虽然我的路是从这里开始的,但是这里不再是乐土.感谢曾经影响过,引导过,帮助过我的董凯,飞燕,leeco,starwing,Rockcarry,soft_wind等等等等.别了,BCCN.