C++面向对象程序设计实训4
第1关:实践题求最大值#include <iostream> // 编译预处理命令#include <string.h> // 编译预处理命令using namespace std; // 使用命名空间std template <class ElemType>ElemType Max(ElemType x, ElemType y){ /****