以下程序中,函数fun的功能是计算x2-2x+6,主函数中将调用fun函数计算: y1=(x+8)2-2(x+8)+6 y2=sin2(x)-2sin(x)+6 请填空。 ginclude "math.h" double fun(double x){re

admin2010-12-10  32

问题 以下程序中,函数fun的功能是计算x2-2x+6,主函数中将调用fun函数计算:
y1=(x+8)2-2(x+8)+6
y2=sin2(x)-2sin(x)+6
请填空。
ginclude  "math.h"
double fun(double x){return(x*x-2*x+6);}
main()
{double  x,y1,y2;
pfintf("Enterx:");scanf("%lf"&x);
y1=fun(  [10]  );y2=fun(  [11]  );
pin

选项 A、 [10] x+8
[11] sin(x)

答案

解析  用x+8代替函数fun(double x)中形式参数x。用sin(x)代替函数fun(double x)中形式参数x。
转载请注明原文地址:https://kaotiyun.com/show/pEPp777K
0

相关试题推荐
最新回复(0)