二级C语言-阶乘公式求职-题解(C++代码) 摘要:#include using namespace std; double fact(int k_int) { double jc_int = 1.0; for (int i_f…… 题解列表 2019年11月29日 0 点赞 0 评论 322 浏览 评分:0.0
二级C语言-阶乘公式求职-题解(C++代码) 摘要:#include using namespace std; double fact(int k) { double jch=1; for(int i=1;i>n; double su…… 题解列表 2019年11月17日 0 点赞 0 评论 498 浏览 评分:9.9
2006年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:直接上参考代码:#include<bits/stdc++.h> using namespace std; double fact(int n) { return n==1?1:fact(n-1…… 题解列表 2018年11月17日 0 点赞 0 评论 504 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:解题思路:注意事项:保留小数点后5位要用到setprecision函数命令参考代码:#include<iostream>#include<iomanip>using namespace std;dou…… 题解列表 2018年07月28日 0 点赞 0 评论 562 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C++代码)直接打表啊8以上值不变hhh 摘要:解题思路:目测每次加的数越来越小,结果不变,,所以,,前8个数结果是1, 1.5, 1.66667, 1.70833, 1.71667, 1.71806, 1.71825, 1.71828,之后都为1…… 题解列表 2017年07月28日 1 点赞 1 评论 694 浏览 评分:5.5
2006年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:解题思路:注意事项:阶乘用double别用int 阶乘用double别用int 阶乘用double别用int参考代码:#include<iostream>#include<iomanip>//格式化输…… 题解列表 2017年07月19日 0 点赞 0 评论 974 浏览 评分:0.0