解题思路:
1、编写分段函数
2、调用的同时输出
注意事项:
1、当函数写在main函数的下面时,需要在调用前声明
参考代码:
#include "stdio.h" int main(){ float x; scanf("%f",&x); float fun(float); //函数声明 printf("%.2f\n",fun(x));//调用函数直接输出 return 0; } float fun(float x){ //判断函数 if(x<1){ return x; //直接返回,不用定义变量 } else if(x>=1&&x<10){ return 2*x-1; } else{ return 3*x-11; } return 0; }
0.0分
0 人评分