34: 计算函数

34: 计算函数_第1张图片

代码实现如下

#include 
int main() 
{
    int x;
    scanf("%d",&x);
    if (x<1)
    {
        printf("%d\n",x);
    }else if (x<10)
    {
        printf("%d\n",2*x-1);
    }else 
    {
        printf("%d\n",3*x-11);
    }
    return 0;
}

你可能感兴趣的:(算法,数据结构)