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

admin2010-12-16  30

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

选项

答案7,3.4。

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

最新回复(0)