编写程序,完成下面分段函数y的计算,从键盘输入x值,并输出y的值。
编写程序,完成下面分段函数y的计算,从键盘输入x值,并输出y的值。┌-2x+10x<0y=│└3x+20x>=0...
编写程序,完成下面分段函数y的计算,从键盘输入x值,并输出y的值。
┌ -2x+10 x<0
y=│
└ 3x+20 x>=0 展开
┌ -2x+10 x<0
y=│
└ 3x+20 x>=0 展开
4个回答
展开全部
#include <stdio.h>
double fun(double x){
double y;
if(x<0) y=2*x+10;
else y=3*x+20;
return y;
}
int main(){
double x;
printf("Enter the value of x: ");
scanf("%f",x);
printf("The value of y is %f.\n",fun(x));
return 0;
}
double fun(double x){
double y;
if(x<0) y=2*x+10;
else y=3*x+20;
return y;
}
int main(){
double x;
printf("Enter the value of x: ");
scanf("%f",x);
printf("The value of y is %f.\n",fun(x));
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream>
using namespace std;
int main()
{
float x,y;
cout<<"input x please:"<<endl;
cin>>x;
if(x<0)
y=-2*x+10;
else
y=3x+20;
cout<<"y= "<<y<<endl;
return 0;
}
using namespace std;
int main()
{
float x,y;
cout<<"input x please:"<<endl;
cin>>x;
if(x<0)
y=-2*x+10;
else
y=3x+20;
cout<<"y= "<<y<<endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
program func;
var x:extended;
begin
readln(x);
if x<0 then writeln(-2*x+10)
else writeln(3*x+20);
end.
var x:extended;
begin
readln(x);
if x<0 then writeln(-2*x+10)
else writeln(3*x+20);
end.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询