📄 overload.cpp
字号:
#include <iostream>
using namespace std;
/*main information*/
void info()
{
cout << "function overloading \n";//fill "*" with information
}
/**/
int max(int ia, int ib, int ic)
{
ia = ia > ib? ia: ib;
return ia > ic? ia: ic;
}
long max(long la, long lb, long lc)
{
return 11;
}
double max(double da, double db, double dc)
{
return 12;
}
double max(double da, double db)
{
return 13;
}
/*source code*/
void test()
{
//input code here......
int a = 4, b = 5, c = 6;
cout << max(a, b, c);
}
/*information of source code owner*/
void end()
{
cout << "\n\n______________\n";
cout << "xiao zhiqiang\n";
cout << "inxk@163.com\n";
cout << "Sep,2006";
getchar();
}
/*the main code*/
void main()
{
info();
test();
end();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -