高精度运算-阶乘累积求和
摘要:
# include # include # define N 66 int main(){ int s[N] = {0}, a[N] = {0};// s累加和,a累积求阶乘 int i,j,k,n,digit=1; //digit代表的是数字的位数 scanf("%d",&n); a[0]=1; s[0]=1; if(n==1... 阅读全文
posted @ 2017-02-18 22:23 随风浪子的博客 阅读(2732) 评论(0) 推荐(1)
浙公网安备 33010602011771号