#include<stdio.h>
/**/ #include “conio.h” /**/
double fun(double x)
{
/**/ double y;
y=x*x-2*x+6;
return y;
/**/
}
void main()
{
double x,y1,y2;
clrscr();
printf(“Please input x:”);
scanf(“%lf”,&x);
y1=fun(x+8);
y2=fun(/**/ sin(x) /**/);
printf(“\nf(x+8)=%.3lf”,y1);
printf(“\nf(sinx)=%.3lf”,y2);
getch();
}
/*输入2.0 f(x+8)=86.000 f(sinx)=5.008*/
>> 本文固定链接: http://www.vcgood.com/archives/2436
#include<stdio.h>
#include<conio.h>
#include<cmath>
double fun(double x)
{
double y;
y=x*x-2*x+6;
return y;
}
void main()
{
double x,y1,y2;
printf(“Please input x:”);
scanf(“%lf”,&x);
y1=fun(x+8);
printf(“\nf(x+8)=%.3lf”,y1);
y2=fun(sin(x));
printf(“\nf(sinx)=%.3lf”,y2);
getch();
}
这样就可以了,sin一定要调用cmath的头文件的,至于那个clrscr();我也不知道怎么用,也不知道你想起到什么样子的效果。因为我也是新手~