首页 > 代码库 > 题目1076:N的阶乘(大数乘法)
题目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 10010using 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****************************************************************/
题目1076:N的阶乘(大数乘法)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。