解题思路:
注意事项:
参考代码:/*按如下递归公式求函数值。
x=1时 f(x)=10;x>1时 f(x)=f(x-1)+2*/
#include <stdio.h>
int f(int x);
int main()
{
int x;
scanf("%d",&x);
printf("%d",f(x));
return 0;
}
int f(int x)
{
if(x==1)
return 10;
if(x>1)
return f(x-1)+2;
}
0.0分
0 人评分
大神老白 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:642 |
核桃的数量 (C语言代码)浏览:726 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:1100 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
计算质因子 (C语言代码)浏览:778 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:852 |
1073题解浏览:652 |