题目1076:N的阶乘(大数乘法)
题目链接:http://ac.jobdu.com/problem.php?pid=1076
详解链接:https://github.com/zpfbuaa/JobduInCPlusPlus
参考代码:
#include <iostream> #include <stdio.h> #include <algorithm> #include <string.h> #include <cmath> #define MAX_SIZE 10010 using namespace std; int n; int pos[MAX_SIZE]; int main(){ while(~scanf("%d",&n)){ memset(pos,0,sizeof(pos)); if(0==n){ printf("1\n"); continue; } int i,j; int length = 1; pos[0]=1; for(i = 1 ; i <= n ; i++){ int carry = 0; for(j = 0 ; j < length ; j++){ pos[j] = pos[j] * i + carry; if(pos[j]>=10){ carry = pos[j]/10; pos[j] = pos[j]%10; } else{ carry = 0; } } while(carry!=0){ pos[length++] = carry % 10; carry/=10; } } for(i = MAX_SIZE ; i >= 0 ; i--){ if(pos[i]!=0) break; } for(j = i ; j >= 0 ; j--){ printf("%d",pos[j]); } printf("\n"); } return 0; } /************************************************************** Problem: 1076 User: zpfbuaa Language: C++ Result: Accepted Time:1480 ms Memory:1560 kb ****************************************************************/
作者: 伊甸一点
出处: http://www.cnblogs.com/zpfbuaa/
本文版权归作者伊甸一点所有,欢迎转载和商用(须保留此段声明),且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
原文链接 如有问题, 可邮件(zpflyfe@163.com)咨询.