编一个程序,输入实数X的值,按公式计算并输出Y值公式
问题描述:
编一个程序,输入实数X的值,按公式计算并输出Y值公式
公式为y={x (x
答
void main(){
float x,y;
cin>>x;
if (x=10)
y=3*x-11;
else
y=2*x-1;
cout