C语言训练-求函数值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int x){ if(x==1) { return 10; } ……
题解 1137: C语言训练-求函数值(C)
摘要:参考代码:#include<stdio.h>
int main(void){
int x,y=10;
int i;
scanf("%d",&x);
if(x>1){
……
1137: C语言训练-求函数值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a=10,i,x;void fun1(){ scanf("%d",&x); if(x==1) { ……
C语言训练-求函数值-题解(C语言代码)(递归)
摘要:规律就是第一个为10,往后每一个加2
完全没看懂题.....第一种递归
```c
#include
int zi(int x)
{
if(x==1)
{
……
C语言训练-求函数值-题解(C语言代码)
摘要:解题思路:没啥思路,比较简单注意事项:没啥需要注意的参考代码:#include<stdio.h> int main() { int i,x,y=0; //定义中间变量 scanf("%……
优质题解
C语言训练-求函数值--浅讲递归(c语言)
摘要:### 解题思路
递归函数看起来可能是很懵逼,为啥可以求出这个值呢?我不是只是return f(x-1)+2吗?
这就是递归的意义,一直递归到最后的f(1)的时候就可以全部转成数字……
C语言训练-求函数值-题解(C语言代码)
摘要:```c
#include
int fac(int n)
{
if (n == 1)
return 10;
else
return fac……