分段函数贴出来啊
公式呢?
你的分段函数图像请打出来
float fun(float x){ if(x<=1){ return x; }else if(x>1 && x<10){ return 2*x-1; }else{ return 3*x-11; } }