t24:使用VC++2010打开考生文件夹下blank1中的解决方案。此解决方案的项目中包含一个源程序文件 blank1.co 在此,函数fun的功能是:根据形参i的值返回某个函数的值。当调用正确时,程序输出:x1=5.000000,x2= 3000000,x1*x1+x1*x2=40.00000.注意:部分源程序在文件blank1.c中。 不得增行或删行,也不得更改程序的结构! #include
double f1(double x) { return x*x; } double f2(double x, double y) { return x*y; } /**********found**********/ __1__ fun(int i, double x, double y) { if (i==1) /**********found**********/ return __2__(x); else /**********found**********/ return __3__(x, y); } void main() { double x1=5, x2=3, r; r = fun(1, x1, x2); r += fun(2, x1, x2); printf("\nx1=%f, x2=%f, x1*x1+x1*x2=%f\n\n",x1, x2, r); }