2845: 求10000以内n的阶乘 摘要:通过多设一个全零数组实现计算: ```c #include #include int main() { int res[100000]={1},s[100000]={0},i…… 题解列表 2024年04月28日 0 点赞 0 评论 185 浏览 评分:0.0
题解 2845: 求10000以内n的阶乘 摘要:```c #include int main() { int a[100000] = { 0 }; a[1] = 1; int len = 1;//len代表最高位 int n;…… 题解列表 2023年12月17日 1 点赞 0 评论 172 浏览 评分:9.9
双向链表实现大数阶乘 摘要: 双向链表实现大数阶乘参考代码:#include<stdio.h> #include<stdlib.h> // 使用双向链表做阶乘 struct Fac { int num; str…… 题解列表 2023年11月14日 0 点赞 0 评论 148 浏览 评分:9.9
求10000以内n的阶乘((╹ڡ╹ ),数组大小必须是100000,再大些估计会超时,小了他这次没给报运行错误,让我猜半天,会报答案错误,用指针来输出数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define MAXSIZE 100000 int main() { int n; scanf("%d",&n); …… 题解列表 2023年10月18日 0 点赞 0 评论 108 浏览 评分:0.0
2845: 求10000以内n的阶乘 摘要:解题思路:采用高精度算法解决问题注意事项:参考代码:void test(int n){ //采用高精度算法实现 int arr[1000000]={0}; int i,j; int l…… 题解列表 2023年06月22日 0 点赞 0 评论 159 浏览 评分:0.0
求10000以内n的阶乘(c语言版本) 摘要:解题思路:注意事项:初始化 a[1]=1,len=1参考代码:#includeint main(){ int n,i,j,k,len=1,a[100000]={0};//len长度一开始定为 …… 题解列表 2023年02月17日 0 点赞 0 评论 426 浏览 评分:9.9
(高精度阶乘)求10000以内n的阶乘(超详细) 摘要:解题思路:高精度阶乘原理在于保存(i-1)的数,因为在本题中即使使用longlong型也只能求到20!,所以我们以数组去保存高精度的数,因为只要定义了数组长度就可以填充很大的数注意事项:这里的思想采用…… 题解列表 2022年11月15日 1 点赞 0 评论 996 浏览 评分:9.9
大数阶乘用数组进行计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int weishu=1,a[100000]={0}; void PowerN…… 题解列表 2022年09月06日 0 点赞 0 评论 390 浏览 评分:7.6