题目内容
下列程序的招待结果是【 】。
include <iostream. h>
float temp;
float & fn2(float r)
{
temp=r* r* 3.14;
return temp;
}
void main()
{
float a=fn2(5.0);
float& b=fn2(5.0)
b=20;
cout<<temp<<end1;
}
查看答案
搜索结果不匹配?点我反馈