从键盘输入浮点型变量x的值,求方程y=x2+2x-10所对应的y值并输出。
时间: 2023-05-22 07:06:00 浏览: 449
程序设计-求一元二次方程的根.pptx
可以使用以下代码实现:
#include <stdio.h>
#include <math.h>
int main()
{
float x, y;
printf("请输入x的值:");
scanf("%f", &x);
y = pow(x, 2) + 2 * x - 10;
printf("y的值为:%.2f\n", y);
return 0;
}
注:pow() 是 math.h 库中的函数,用于求次方。
阅读全文