题解 1066: 二级C语言-自定义函数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

两个函数都用递归的操作

摘要:解题思路:注意事项:参考代码:#include<iomanip>using namespace std;double fact(double n){ if(n==1) return 1; return……

自定义函数

摘要:解题思路:求兄弟们看看哪里有问题,提示的是非法访问等注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scann……

二级C语言-自定义函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fact(long long n){    int i;    long long m=1……

二级C语言-自定义函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double fact(long long n); double my_pow(double ……