Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 8, 2020 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/d14871d6ae108001efa7580e26408fa8 to your computer and use it in GitHub Desktop.
Save amankharwal/d14871d6ae108001efa7580e26408fa8 to your computer and use it in GitHub Desktop.
#include<iostream>
#include<climits>
using namespace std;
int main(){
int n;
cin>>n;
int arr[n];
for (int i = 0; i < n; i++){
cin>>arr[i];
}
int maxNO = INT_MIN;
int minNO = INT_MAX;
for (int i = 0; i < n; i++){
maxNO = max(maxNO, arr[i]);
minNO = min(minNO, arr[i]);
}
cout<<"Maximum Element :"<<maxNO<<" Minimum Element :"<<minNO<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment