填空题

下列程序的招待结果是 【14】 。 # 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; }

【参考答案】

T