用函数模版求最大值
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#include
#include
using namespace std;
template
T max(T array[],int k)
{
int max=0,i;
for (i=1;i if (array[i]>array[max]) max=i; return array[max]; } int main() { int n,a[100]={0},choice,i; float b[100]; string c[100];//* 定义字符串*// cout<<"Please choose the data type you want to compare: 1. IntCom 2.FloatCom 3.StringCom 0.Exit"< cin>>choice; switch(choice) { case 1: cout<<"Please input the number of array :"< cin>>n; cout<<"Please input "< for( i=0;i cin>>a[i]; cout<<"The bigest number is "< break; case 2: cout<<"Please input the number of array :"< cin>>n; cout<<"Please input "< for(i=0;i cin>>b[i]; cout<<"The bigest number is "< break; case 3: cout<<"Please input the number of array :"< cin>>n; cout<<"Please input "< for( i=0;i cin>>c[i]; cout<<"The bigest string is "< break; case 0: exit(0); } return 0; }