peige


私信TA

用户名:peige

访问量:34616

签 名:

求你们别学啦,我跟不上

等  级
排  名 273
经  验 5802
参赛次数 0
文章发表 65
年  龄 20
在职情况 学生
学  校 华南农业大学
专  业 软件工程

  自我简介:

求你们别学啦,我跟不上

解题思路:





注意事项:





参考代码:

#include<stdio.h>
#include<string.h>
#include <math.h>
int f(x)
{
    int y;
    if(x==1)
        y=10;
    if(x>1)
        y=f(x-1)+2;
    return y;
}
int main()
{
    int x;
    scanf("%d",&x);
    printf("%d",f(x));
return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »