#include <iostream>
using namespace std;
int max(int a, int b)
{
return a >= b ? a : b;
}
float max(float a, float b)
{
return a >= b ? a : b;
}
double max(double a, double b)
{
return a >= b ? a : b;
}
int main() {
cout << "max integer(整数 is " << max(7, 4) << endl;
cout << "max real number(实数 is " << max(78.6, -34.6) << endl;
cout << "max Double precision number(双精度数 is " << max(1.34, 0.45) << endl;
system("pause");
return 0;
}
编写三个重载函数,分别求两个整数、实数和双精度数中最大的数。
最新推荐文章于 2024-04-09 17:22:36 发布