#include<iostream>#include<vector>#include<algorithm>intmain(){
std::vector<int> v ={2,1,3,6,7,9,8};int max =*max_element(v.begin(), v.end());int min =*min_element(v.begin(), v.end());
std::cout << min <<", "<< max << std::endl;// 1, 9return0;}
// C++ program to find the min and max element// of Vector using *min_element() in STL#include<bits/stdc++.h>usingnamespace std;intmain(){// Get the vector
vector<int> a ={1,45,54,71,76,12};// Print the vector
cout <<"Vector: ";for(int i =0; i < a.size(); i++)
cout << a[i]<<" ";
cout << endl;// Find the min element
cout << "
Min Element = "
<<*min_element(a.begin(), a.end());// Find the max element
cout << "
Max Element = "
<<*max_element(a.begin(), a.end());return0;}