ratio_equal() in C++ with examples
The ratio_equal() is an inbuilt function in C++ STL that checks if two given ratios are equal or not.
Syntax:
template < class ratio1_name, class ratio2_name > ratio_equal
Template Parameters: The function accepts two template parameters ratio1 and ratio2 which are to be compared.
Return value: The function returns true if the ratios are equal otherwise it returns false.
Below programs illustrate the ratio_equal() function:
Program 1:
// C++ program to illustrate the // ratio_equal function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<3, 9> ratio1; typedef ratio<1, 3> ratio2; // If both the ratios are same if (ratio_equal<ratio1, ratio2>::value) cout << "Both ratio are equal" ; else cout << "Both ratio are not equal" ; return 0; } |
chevron_right
filter_none
Output:
Both ratio are equal
Program 2:
// C++ program to illustrate the // ratio_equal function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<1, 2> ratio1; typedef ratio<5, 4> ratio2; // If both the ratios are same if (ratio_equal<ratio1, ratio2>::value) cout << "Both ratio are equal" ; else cout << "Both ratio are not equal" ; return 0; } |
chevron_right
filter_none
Output:
Both ratio are not equal
Recommended Posts:
- set_symmetric_difference in C++ with Examples
- ratio_not_equal() in C++ with examples
- C/C++ For loop with Examples
- ios eof() function in C++ with Examples
- SDL library in C/C++ with examples
- ios bad() function in C++ with Examples
- feclearexcept in C++ with Examples
- Manipulators in C++ with Examples
- C/C++ while loop with Examples
- memset() in C with examples
- negative_binomial_distribution in C++ with Examples
- iswprint() in C/C++ with Examples
- iswgraph() in C/C++ with Examples
- std::mismatch() with examples in C++
- C/C++ do while loop with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.