2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要://形参的类型别写错了#include <stdio.h>#include<math.h>double fact(int n){ double a = 1.0; for(int i=1;i…… 题解列表 2017年06月14日 0 点赞 0 评论 1078 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>double fact(int n){ int i; long f=1; for(i=2;i<=n;i++) { f=f*i…… 题解列表 2017年06月16日 0 点赞 0 评论 757 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:思路:代公式答案:#include<stdio.h> double fact(int n); double mypow(double x,int n); double fact(int n){ …… 题解列表 2017年06月17日 0 点赞 0 评论 700 浏览 评分:8.0
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
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 评论 846 浏览 评分:9.9
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语言代码) 摘要:解题思路:注意事项:sum+=t;参考代码:#include <stdio.h> double fact(int a) { if (a<0) return -1; else i…… 题解列表 2017年07月28日 0 点赞 0 评论 839 浏览 评分:0.0
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 蹲坑的时候,手机只剩6%的电了,我寻思用完所有电就擦屁股走人。 看了一会这坨,老爸好像内急敲门:儿子好了没有啊。 我不假思索地回了句:马上,还有2%…… 题解列表 2017年08月08日 18 点赞 14 评论 1739 浏览 评分:7.3
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
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