编写程序实现下列功能,函数y=x(x
编写程序实现下列功能,函数y=x(x
#include
#include
void main()
{
float x, y;
printf("请输入x的值:");
scanf("%f", &x);
if(x y=x;
else if(x>=10)
y=3*x-11;
else
y=2*x-1;
printf("\r\ny值为:%f", y);
return 0;
}
#include
#include
main()
{
float x, y;
printf("请输入x和y的值:");
scanf("%f%f", &x, &y);
if(x y=x;
else if(x>=1&&x y=2*x-1;
else if(x>=10)
y=3*x-11;
printf("The result is %f.", y);
system("pause");
return 0;
}
这是用C语言编写的,不知道是不是你想要的
#include
void main()
{
int x,y;
scanf("%f",&x);
if(x=10)
{
y=3*x-11;
printf("%f",y);
}
else
{
y=2*x-1;
printf("%f",y);
}
}