猿问

这个程序我有不理解的地方,请大神帮忙解答一下

#include <iostream>

using namespace std;

/**

  *函数功能:返回a和b的最大值

  *a和b是两个整数

  */

int getMax(int a, int b)

{

    return a > b ? a : b;

}


/**

  * 函数功能:返回数组中的最大值

  * arr:整型数组

  * count:数组长度

  * 该函数是对上面函数的重载

  */

int getMax(int&arr,count)

{

    //定义一个变量并获取数组的第一个元素

    int maxNum=arr[0]

for(int i = 1; i < count; i++)

{

        //比较变量与下一个元素的大小

if(maxNum<arr[i])

{

            //如果数组中的元素比maxNum大,则获取数组中的值

maxNum=arr[i];

}

}

return maxNum;

}


int main(void)

{

    //定义int数组并初始化

int numArr[3] = {3, 8, 6};

    

    //自动调用int getMax(int a, int b)

cout << getMax(3, 6) << endl;

    

    //自动调用返回数组中最大值的函数返回数组中的最大值

cout << getMax(numArr,3) << endl;

return 0;

}


从自动调用int getMax(int a,int b)那里开始就不懂了,为什么是getMax(3,6),后面为什么是getMax(numArr,3),求大神解答。


有梦想的小芋头
浏览 1632回答 3
3回答

什么鬼_呀你

额,第一个getMax方法是用三目运算求出传入参数3和6那个大的;第二个getMax方法是循环求出数组中的最大数值,传进去的是数组的地址和长度。

qq_十字路口_0

getMax(numArr,3),因为第一个参数时数组,数组名是一个地址。
随时随地看视频慕课网APP
我要回答