用c++编程序求分段函数,从键盘上输入x的值求y值,编写一完整程序,实现上述函数功能 20

x(x<0)y=3x-2(10<=x<50)4x-1(50<=x<=100)5x(x>=100)... x (x<0)
y= 3x-2 (10<=x<50)
4x-1 (50<=x<=100)
5x (x>=100)
展开
 我来答
失落世界
2013-03-03 · TA获得超过110个赞
知道答主
回答量:63
采纳率:0%
帮助的人:40万
展开全部
#include<iostream.h>
#include<conio.h>
int sub_function(int x)
{
if(x<0)
return x;
else
if(10<=x&&x<50)
return 3*x-2;
else
if(50<=x&&x<=100)
return 4*x-1;
else
if(x>100)
return 5*x;
else
cout<<"未定义X在此区域!!"<<endl;
}
void main(void)
{
while(1)
{
int x,y;
cout<<"请输入x(整数):";
cin>>x;
y=sub_function(x);
cout<<"Y的值为:"<<y<<endl;
getch();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
随心E谈
推荐于2018-04-05 · TA获得超过1009个赞
知道小有建树答主
回答量:491
采纳率:50%
帮助的人:140万
展开全部
#include<iostream.h>
fun( double x){
if( x<0) return x;
if(10<=x&&x<=50) return 3*x-2;
if(50<=x&&x<=100) return 4*x-1;
if(x>=100) return 5*x;
return 0;
}
int main(){
double x;
cin>>x;
cout<<fun(x);
return 0;
}
追问
你运行过吗?没问题吗?因为我这里没装软件,无法验证
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tian435
2013-03-03 · TA获得超过1219个赞
知道小有建树答主
回答量:835
采纳率:0%
帮助的人:214万
展开全部
# include <stdio.h>
int main()
{
int x;
scanf("%d",&x);
if(x>=10&&x<50)
printf("y=%d\n",3*x-2);
if(x>=50&&x<=100)
printf("y=%d\n",4*x-1)
if(x>=100)
printf("y=%d\n",5*x)

return 0;
}
更多追问追答
追问
首先定义就错了吧
追答
什么意思
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式