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.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.
Next Steps:
- Get Free Certificate of Merit in C++ Programming
- Participate in C++ Programming Certification Contest
- Become a Top Ranker in C++ Programming
- Take C++ Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Apply for C++ Internship
- Apply for Computer Science Internship
- Buy C++ Books
- Buy Computer Science Books
- Buy Programming Books