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

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

筛选

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

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

C语言训练-求函数值

摘要:import sys sys.setrecursionlimit(1000000) def f(n):     if n==1:         return 10     elif n>1……

C语言训练-求函数值(超简C++)

摘要:解题思路:函数调用自己即可实现递归注意事项:参考代码:#include<iostream> using namespace std; int f(int x) {     if(x==1) ……