#include <stdio.h>
#include <math.h>
int main()
{
float x,y;
//scanf("%f",&x);
x=11;
if(x<1)
printf("%7.2f\n",y=x);
else
if(x>=10)
printf("%7.2f\n",y=3*x-11);
else//(x>=1 && x<10)
printf("%f\n",y=2*x-1);
return 0;
}
当x<1,输出y=x
当x>=10,输出y=3x-11;
之间x值,输出2x-1