用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) 展开
y= 3x-2 (10<=x<50)
4x-1 (50<=x<=100)
5x (x>=100) 展开
3个回答
展开全部
#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();
}
}
#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();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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;
}
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;
}
追问
你运行过吗?没问题吗?因为我这里没装软件,无法验证
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
# 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;
}
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;
}
更多追问追答
追问
首先定义就错了吧
追答
什么意思
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询