How to find minimum and maximum element in vector with C++

1 Answer

0 votes
#include <iostream> 
#include <vector>
#include <algorithm>

using std::vector;
using std::cout;  
using std::endl;

int main()
{
	vector<int> vec{ 13, 12, 300, 1, 98 };

	cout << *max_element(vec.begin(), vec.end()) << endl;
	cout << *min_element(vec.begin(), vec.end()) << endl;

	return 0;
}

/*
run:

300
1

*/


answered Apr 27, 2018 by avibootz
...