永发信息网

关于函数编写程序.

答案:3  悬赏:20  手机版
解决时间 2021-04-24 11:11
  • 提问者网友:几叶到寒
  • 2021-04-23 17:20

编写一个程序,对于函数y=x(x<1),y=2x-1(1≤x<10),y=3x-11(x≥10),输入x的值,输出相应的函数值.

图示

最佳答案
  • 五星知识达人网友:零点过十分
  • 2021-04-23 17:53
main()
{
  int x,y;
  scanf("%d",&x);
  if(x<1) y=x;
  else if(x<10) y=2*x-1;
    else y=3*x-11;
  printf("%d\n",y);
}
全部回答
  • 1楼网友:罪歌
  • 2021-04-23 19:19

public int func(int x){

    if(x<1) return x;

    else if(x>=1 && x<10) return 2*x-1;

   else return 3*x-11; 

}

  • 2楼网友:怀裏藏嬌
  • 2021-04-23 18:01

private sub command1_click()

   dim x,y

   x=inputbox("请输入x的值:","输入")

   if x<1 then

    y=x

   else

    if x<10 then

    y=2*x-1

    else

    y=3*x-11

    end if

   end if

end sub

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯