需要过程,编写重载函数实现分别求2个整数,3个字符串的最大值
收起
int GetMax(int a, int b){return a>b?a:b;} string GetMax(string a,string b,string c){ return "自己判断" }
报告相同问题?