定义函数返回两个数中较大的数,在在主函数中通过调用该函数求三个数之中较大的数并输出。编写主函数调用

2025-01-07 05:52:27
推荐回答(3个)
回答1:

#include

using namespace std;

template 
T max(T a,T b)
{
    return a>b?a:b;
}

int main()
{
    int a,b,c;
    cin>>a>>b>>c;
    cout<(max(a,b),c)<    return 0;
}

回答2:

没有其它等明显的提示?

回答3:

直接 调用库函数水过吧~
#include

using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<return 0;
}