题解 1137: C语言训练-求函数值

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

筛选

简单的递归

摘要:#include<stdio.h> int ans(int n); int main(void) {     int n;     scanf("%d",&n);     printf("……

简单的递归进行

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int x){ if(x==1) return 10; if(x>1) return f(x-1)+2;}int main(……

C语言训练-求函数值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){      if(x==1)      {            return 10;      }   ……

1137: C语言训练-求函数值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a=10,i,x;void fun1(){    scanf("%d",&x);    if(x==1)    {       ……
优质题解

C语言训练-求函数值--浅讲递归(c语言)

摘要:### 解题思路 ​ 递归函数看起来可能是很懵逼,为啥可以求出这个值呢?我不是只是return f(x-1)+2吗? ​ 这就是递归的意义,一直递归到最后的f(1)的时候就可以全部转成数字……