第四章函数作业题,函数模板

2018-06-17 21:36:59来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

什么是函数模板?

就是不写具体的数据类型,而用一个虚拟类型来代表,这样可以提高效率。

#include <iostream>
using namespace std;

template<typename T>
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<<"请你输入三个整型的数字:"<<endl;
    cin>>a>>b>>c;
    m=max(a,b,c);
    cout<<"The max of a b and c is:"<<m<<endl;
    
    double ad,bd,cd,md;
    cout<<"请你输入三个小数类型的数字:"<<endl;
    cin>>ad>>bd>>cd;
    md=max(ad,bd,cd);
    cout<<"The max of a b and c is:"<<md<<endl;
    
    long al,bl,cl,ml;
    cout<<"请你输入三个长整型的数字:"<<endl;
    cin>>al>>bl>>cl;
    ml=max(al,bl,cl);
    cout<<"The max of a b and c is:"<<ml<<endl;
    return 0;
}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:【DTOJ】2700:hello world

下一篇:11.6