给定程序中,函数fun的功能是:根据形参i的值返回某个函数的值。当调用正确时,程序输出: x1=5.oooooo.x2=3.0000100,x1*x1+x1*x2=40.000000。 注意:部分源程序在文件BLANK1.C中。 不

admin2016-12-06  20

问题 给定程序中,函数fun的功能是:根据形参i的值返回某个函数的值。当调用正确时,程序输出:
    x1=5.oooooo.x2=3.0000100,x1*x1+x1*x2=40.000000。
    注意:部分源程序在文件BLANK1.C中。
    不得增行或删行,也不得更改程序的结构!
    试题程序:
1   #include<stdio.h>
2   double f1(double x)
3   {return x*x;)
4   double f2(double x,double y)
5  {return x*y;)
6   /*********found*********/
7   【1】 fun(int i,double x,double y)
8    {if(i==1)
9  /*********found*********/
10  return 【2】(x);
11  else
12   /*********found*********/
13  return 【3】(x,y);
14  }
15  main()
16  {double x1=5,x2=3,r;
17   r=fun(1,x1,x2);
18  r+=fun(2,x1,x2);
19   printf(’’\nx1=%f,x2=%f,x1*x1+x1*x2=%f\n\n’’,x1,x2,r);
20  }

选项

答案(1)double(2)f1 (3)f2

解析 填空1:本空函数fun的返回值,根据return可知,不论返回的是f1还是f2,它们的返回值均为double型的,故此空应该填写double。
    填空2:因为函数fun的功能是根据形参i的值返回某个函数的值,当i等于1时,应该返回的是f1。
    填空3:如果不满足if的话,应该返回的是f2。
转载请注明原文地址:https://kaotiyun.com/show/aVDp777K
0

最新回复(0)