how to find maximum element in an array in c++ code example
Example 1: how to get the largest number in a c++ array
#include <iostream>
using namespace std;
int main(){
int n, largest;
int num[50];
cout<<"Enter number of elements you want to enter: ";
cin>>n;
for(int i = 0; i < n; i++) {
cout<<"Enter Element "<<(i+1)<< ": ";
cin>>num[i];
}
largest = num[0];
for(int i = 1;i < n; i++) {
if(largest < num[i])
largest = num[i];
}
cout<<"Largest element in array is: "<<largest;
return 0;
}
Example 2: c++ max of array
cout << " max element is: " << *max_element(array , array + n) << endl;
Example 3: find the maximum number from an int Array
---without sort method---
public static int maxValue( int[] n ) {
int max = Integer.MIN_VALUE;
for(int each: n)
if(each > max)
max = each;
return max;
---with sort method---
public static int maxValue( int[] n ) {
Arrays.sort( n );
return n [ n.lenth-1 ];
}
Example 4: maximum int c++
#include <limits>
int imin = std::numeric_limits<int>::min();
int imax = std::numeric_limits<int>::max();
Example 5: max element in array
int max;
max=INT_MIN;
for(int i=0;i<ar.length();i++){
if(ar[i]>max){
max=ar[i];
}