This C++ program prints maximum of two values using max algorithm. The function takes two objects as the parameters by const reference and the third parameter is optional which is a predicate. The predicate can be used for objects which can not be compared like primitive datatypes and hence can be compared on the basis of some key.
Here is the source code of the C++ program which prints maximum of two values using max algorithm. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.
/*
* C++ Program to print maximum of two values using max() algorithm
*/
#include <iostream>
#include <algorithm>
int main()
{
int a, b;
std::cout << "Enter a = ";
std::cin >> a;
std::cout << "\nEnter b = ";
std::cin >> b;
std::cout << "\nMaximum of a and b is "
<< std::max(a, b) << std::endl;
}
$ a.out Enter a = 10 Enter b = 20 Maximum of a and b is 20 $ a.out Enter a =-40 Enter b = 20 Minimum of a and b is 20
Sanfoundry Global Education & Learning Series – 1000 C++ Programs.
advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.
Related Posts:
- Apply for C++ Internship
- Check Computer Science Books
- Practice Programming MCQs
- Check C++ Books
- Apply for Computer Science Internship