请编制一个计算y=f(x)的程序,其中: y=f(x)=⎧⎩⎨0,4x3,2.5x−10.5,x<00≤x≤15x>15C语言
时间: 2024-06-06 16:08:02 浏览: 85
4*5=6!(compatibility mode)
#include <stdio.h>
float f(float x);
int main() {
float x, y;
printf("请输入x的值:");
scanf("%f", &x);
y = f(x);
printf("y的值为:%f\n", y);
return 0;
}
float f(float x) {
if (x < 0) {
return 0;
} else if (x <= 15) {
return 4 * x * x * x;
} else {
return 2.5 * x - 10.5;
}
}
阅读全文