什么是函数模板?
就是不写具体的数据类型,而用一个虚拟类型来代表,这样可以提高效率。
#includeusing namespace std;template T max(T x ,T y,T z){ if(z>x) x=z; if(y>x) x=y; return x;}int main(){ int a,b,c,m; cout<<"请你输入三个整型的数字:"< >a>>b>>c; m=max(a,b,c); cout<<"The max of a b and c is:"< < >ad>>bd>>cd; md=max(ad,bd,cd); cout<<"The max of a b and c is:"< < >al>>bl>>cl; ml=max(al,bl,cl); cout<<"The max of a b and c is:"< <