fangzheng


私信TA

用户名:fangzheng

访问量:8890

签 名:

等  级
排  名 3573
经  验 1896
参赛次数 0
文章发表 26
年  龄 13
在职情况 学生
学  校 南京科利华中学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include <stdio.h>

#include <stdlib.h>


int main()

{

    int x,y;

    scanf("%d",&x);

    if(x<1)

    {

        y=x;

        printf("%d",y);

    }

    else if(x>=1 && x<10)

    {

        y=2*x-1;

        printf("%d",y);

    }

    else if(x>=10)

    {

        y=3*x-11;

        printf("%d",y);

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »