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 <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 评论 756 浏览 评分:0.0
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