//编写一个简单的函数实现重载。 #include <iostream> using namespace std; int max(int a,int b) { return a>b?a:b; } int max(int a,int b,int c) { int x=max(a,b); return max(x,c); } double max(double a,double b) { return a>b?a:b; } int main() { cout<<"2, 5中较大的数为的:"<<max(2,5)<<endl; cout<<"2, 5, 8中较大的数为的:"<<max(2,5,8)<<endl; cout<<"3.0, 4.4中较大的数为的:"<<max(3.0,4.4)<<endl; return 0; }
原文地址:http://blog.csdn.net/doudouwa1234/article/details/45199109