#include <iostream> // 预处理命令 //2
using namespace std; // 使用标准命名空间std //3
//4
template <class ElemType> //5
ElemType Max(ElemType a, ElemType b) // 返回最大值 //6
{ //7
return (a > b) ? a : b; // 返回a与b的最大值 //8
} //9
//11
int main(void) // 主函数main(void) //12
{ //13
cout << Max(16, 518) << endl; // 显示最大值 //14
cout << Max(16.8, 518) << endl; // 显示最大值 //15
//16
system("PAUSE"); // 调用库函数system( ), 输出系统提示信息 //17
return 0;
asd8532
相关分类