How to find the Maximum of Two Numbers in C++


How to find the Maximum of Two Numbers in C++ ?

Answer

To find the maximum of two numbers in C++, you can use the standard library function std::max.



✐ Examples

1 Maximum of Two Numbers

In this example,

  1. We include the necessary header file .
  2. We declare two variables a and b and assign values to them.
  3. We use the std::max function to find the maximum of a and b.
  4. We print the maximum value.

C++ Program

// Maximum of Two Numbers
#include <iostream>
#include <algorithm>

int main() {
    int a = 10;
    int b = 15;
    int max = std::max(a, b);

    std::cout << "Maximum of " << a << " and " << b << " is: " << max << std::endl;
    return 0;
}

Output

Maximum of 10 and 15 is: 15

Summary

In this tutorial, we learned How to find the Maximum of Two Numbers in C++ language with well detailed examples.




More C++ Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in C++ ?
  2. How to find the Minimum of Two Numbers in C++ ?
  3. How to find the Maximum of Three Numbers in C++ ?
  4. How to find the Minimum of Three Numbers in C++ ?