How to find the Minimum of Two Numbers in C++ - Step by Step Examples
How to find the Minimum of Two Numbers in C++ ?
Answer
To find the minimum of two numbers in C++, you can use the std::min function.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We include the
header for using thestd::min
function. - We declare two variables
a
andb
and assign values to them. - We use the
std::min
function to find the minimum ofa
andb
. - We print the minimum value.
C++ Program
// Minimum of Two Numbers
#include <iostream>
#include <algorithm>
int main() {
int a = 10;
int b = 15;
int min_val = std::min(a, b);
std::cout << "Minimum of " << a << " and " << b << " is: " << min_val << std::endl;
return 0;
}
Output
Minimum of 10 and 15 is: 10
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in C++ language with well detailed examples.