这个函数的C语言编程程序
发布网友
发布时间:2022-07-13 23:45
我来回答
共3个回答
热心网友
时间:2023-09-14 00:38
C语言程序:
#include <stdio.h>
void main()
{
int x;
double y;
printf("x = ");
scanf("%d", &x);
y = 1.0 * (x * x - 5 * x + 3) / (x - 2);
printf("x = %d, y = %lf\n", x, y);
}
运行测试:
x = 3
x = 3, y = -3.000000
追问
我这样可以吗
热心网友
时间:2023-09-14 00:39
#include <stdio.h>
void main()
{
int x;
float y;
scanf("%d",&x);
if(x==2) printf("函数值不存在!");
else
{
y=(x*x-5.0*x+3)/(x-2);
printf("x=%d\ny=%f",x,y);
}
}
热心网友
时间:2023-09-14 00:39
#include<stdio.h>
int main()
{
int x;
double y;
scanf("%d",&x);
if(x==2)
{
printf("No solution!\n");
return -1;
}
else
{
y=x*x-5*x+3;
y/=(x-2);
printf("x=%d,y=%.3f\n",x,y);
return 0;
}
}