c_cpp 数组中最大的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 数组中最大的值相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
#include <stdbool.h>

using namespace std;

int largestNumber(int arr[], int n){
    // setting the first item maximum
    int max = arr[0];

    for(int i = 1; i < n; i++){
        if(arr[i] > max)
            max = arr[i];
    }

    return max;
}


int main(){ 
    int arr[] = {10, 20, 22, 11, 5};
    int n = sizeof(arr) / sizeof(arr[0]);
    cout << "Largest in array given: " << largestNumber(arr, n) << endl;

    return 0;

}

以上是关于c_cpp 数组中最大的值的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 找到数组中最大的三个元素

c_cpp 最大子阵列总和。在具有最大总和的数组(包含至少一个数字)中查找连续的子数组。

c_cpp 找到未排序数组中最大的对总和

c_cpp 找到数组中的最大元素,该元素首先增加然后减少

c_cpp 给定数组的所有旋转中ixarr [i]的最大总和

c_cpp 找到大量数字中最大的k数。您无法对数组进行排序。