编写题解 1014: [编程入门]阶乘求和 摘要:因为这是阶乘求和,一般的int 类型可能就不够,因此我们利用long long int 类型(不用unsigned long 因为当n为20时,Sn =2561327494111820313) ``…… 题解列表 2023年03月01日 0 点赞 0 评论 270 浏览 评分:0.0
1014: [编程入门]阶乘求和 摘要:##这题还是有作用的一道不错的题,它告诉我们需要注意整型数的大小,超出大小可能会出错 可能会有人想到用double形,因为它也占8字节,大小符合要求,但是因为它是浮点数,我们都知道在计算机中是无…… 题解列表 2023年02月25日 0 点赞 1 评论 259 浏览 评分:9.9
1014: [编程入门]阶乘求和(超级简单) 摘要: import java.util.*; public class Main { public static void main(String[] args) { Scanner sc …… 题解列表 2023年02月23日 0 点赞 0 评论 319 浏览 评分:9.9
定义一个新函数求解 摘要:解题思路:主要利用循环求解注意事项:需要注意:当n越大时,其结果长度越大。 所以我们可以使用long long int 定义 对应%lld 也可以使用…… 题解列表 2023年02月22日 0 点赞 0 评论 445 浏览 评分:9.9
阶乘求和(c语言) 摘要:解题思路:注意事项: sn和n都需要用long long int 参考代码:#include<stdio.h>int main(){ int i, j; long long s…… 题解列表 2023年02月17日 0 点赞 0 评论 278 浏览 评分:9.9
[编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:sum=0t=1num=int(input())for i in range(1,num+1): t=t*i sum+=tprint(sum)…… 题解列表 2023年02月15日 0 点赞 0 评论 212 浏览 评分:0.0
<循环>阶乘求和(C语言) 摘要:解题思路:#include<stdio.h> int main() { int n; long long Sn=0, x = 1; scanf("%d", &n); for (in…… 题解列表 2023年02月11日 0 点赞 0 评论 198 浏览 评分:0.0
题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码import math #导入模块def main(n): #定义函数 return math.factorial(n)n = int(input())sn = …… 题解列表 2023年02月07日 0 点赞 0 评论 223 浏览 评分:0.0
阶乘求和(数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long int n,sn=0; scanf("%lld", &n); long long int a…… 题解列表 2023年02月01日 0 点赞 0 评论 210 浏览 评分:0.0
1014: [编程入门]阶乘求和 摘要:解题思路:当n=1时:sn=1*1当n=2时:sn=1*1 + 1*2当n=3时,sn=1*1 + 1*2 + 1*2*3当n=4时,sn=1*1 + 1*2*3 + 1*2*3*4......我们可…… 题解列表 2023年01月09日 0 点赞 0 评论 225 浏览 评分:9.9