2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ double s=1.0; for(int i=1;i<=n;i++) { …… 题解列表 2017年10月05日 0 点赞 0 评论 627 浏览 评分:0.0
1071——————阶乘公式求职 摘要: n=int(input()) t=1 s=0 for i in range(1,n+1): t=t*i s=s+1.0/t …… 题解列表 2022年08月09日 0 点赞 0 评论 152 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ int i; double sum=1; for(i=1;i<=n;++…… 题解列表 2018年08月25日 0 点赞 0 评论 444 浏览 评分:0.0
阶乘公式求值 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;double fact(double k){ double sum = 0; do…… 题解列表 2024年01月31日 0 点赞 0 评论 74 浏览 评分:0.0
二级C语言-阶乘公式求职-题解(C语言) 摘要:```c #include double fact(int k) { double sum=1.0; int j=1; for(j;j…… 题解列表 2021年08月24日 0 点赞 0 评论 141 浏览 评分:0.0
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;double fact(int k){ double m =…… 题解列表 2024年10月23日 0 点赞 0 评论 122 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (Java代码) 摘要:import java.util.*;public class Main { public static void main(String[] args) { Scanner sc…… 题解列表 2019年03月08日 0 点赞 0 评论 615 浏览 评分:0.0
认真,细心,其实很简单(可以的话,请大佬们给出简单的解法) 摘要:其实都很简单,主要问题是没有注意到题目给出的输出 要注意输出的是 sum= 代码: ```c int fact(int n) { double sum=1; for (…… 题解列表 2021年08月23日 0 点赞 0 评论 198 浏览 评分:0.0
二级C语言-阶乘公式求职-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>double fact(int i){ double sn=1; for(int j=1;j<=i;…… 题解列表 2020年08月06日 0 点赞 0 评论 235 浏览 评分:0.0
定义函数然后建立表格求和 摘要:解题思路:建立列表求和注意事项:参考代码:def fact(a): b=1 for i in range(1,a+1): b=b*i return(b)n=int(in…… 题解列表 2022年03月31日 0 点赞 0 评论 180 浏览 评分:0.0