下列程序的输出结果是【 】。 # include<iostream.h> template <class T> T max(T x[],int n) { int i; T maxv=x[0]; f

admin2010-06-06  33

问题 下列程序的输出结果是【 】。
   # include<iostream.h>
   template <class T>
   T max(T x[],int n)
   {
      int i;
      T maxv=x[0];
      for(i=1;i<n;i++)
           if(maxv<x)
                maxv=x;
           return maxv;
   }
   void main()
   {
      int a[]={3,2,7,6,8,9};
      double b[]={1.2,3.4,2.5,7.3,6.8};
      cout<<max(a,4)<<","<<max(b,3)<<endl;
   }

选项

答案7,3.4

解析 函数的功能是求出数组中指定范围的元素中的最大值。所以在a数组中前四个数据中最大值为7,数组b中前3个元素中最大值为3.4。
转载请注明原文地址:https://kaotiyun.com/show/Egjp777K
0

最新回复(0)