2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言描述——递归算法) 摘要:解题思路:1.求阶层利用递归算法;2.求平方和可以代用“math.h”库函数,然后利用递归求解;3.要保证每一项的符号不同,利用pow(-1,n-1);注意事项:在main主函数中的for循环要理解是…… 题解列表 2017年11月16日 2 点赞 0 评论 1296 浏览 评分:6.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fact(int n){ double g=1; for(int i=1;i<…… 题解列表 2017年11月07日 0 点赞 0 评论 707 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级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 评论 1463 浏览 评分:9.6
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"double fun(double n);double mypow(double x,double n);int main(){ do…… 题解列表 2017年08月12日 0 点赞 0 评论 831 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fact (double n){ int i; double m=1; for(i=1; …… 题解列表 2017年08月10日 0 点赞 0 评论 780 浏览 评分:6.0
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 蹲坑的时候,手机只剩6%的电了,我寻思用完所有电就擦屁股走人。 看了一会这坨,老爸好像内急敲门:儿子好了没有啊。 我不假思索地回了句:马上,还有2%…… 题解列表 2017年08月08日 18 点赞 14 评论 1739 浏览 评分:7.3
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:sum+=t;参考代码:#include <stdio.h> double fact(int a) { if (a<0) return -1; else i…… 题解列表 2017年07月28日 0 点赞 0 评论 839 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int a) { if(a<0) return -1; else if(a==1|| a==0) return …… 题解列表 2017年07月24日 0 点赞 0 评论 712 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int n); double mypow(double x ,int n); int main() { int i,n; d…… 题解列表 2017年07月06日 0 点赞 0 评论 845 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:#include <iostream>#include <iomanip>using namespace std;int main (){ int n; double sum=0,x; cin>>x>…… 题解列表 2017年07月02日 0 点赞 0 评论 1129 浏览 评分:9.9