填空题

下列程序的输出结果是______。 #include<iostream> using namespace std; template<typename T> T fun(T a,T b){return(a<=b) a:b;} int main( ) { cout<<fun(3,6)<<’,’<<fun(3.14F,6.28F)<<endl; return 0; }

【参考答案】

C,C,AD