ratio_less_equal() function in C++ Last Updated : 09 Aug, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The ratio_less_equal() is an inbuilt function in C++ which checks if the ratio R1 is less than or equal to the ratio R2. It returns True if the ratio is less than or equal to ratio 2, else it returns false. Syntax: template < class ratio1_name, class ratio2_name > ratio_less_equal Template Parameters The function accepts two template parameters ratio1 and ratio2 which are to be compared. Return value: The function returns a boolean value which is true if the ratio1 is less than or equal to the ratio2 otherwise returns false.Below programs illustrates the above function:Program 1: CPP // C++ program to illustrate the // ratio_less_equal function // when both the ratios are equal #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<3, 9> ratio1; typedef ratio<1, 3> ratio2; // check if R1<=R2 if (ratio_less_equal<ratio1, ratio2>::value) cout << "3/9 is less than or equal to 1/3"; else cout << "3/9 is greater than 1/3"; return 0; } Output: 3/9 is less than or equal to 1/3 Program 2: CPP // C++ program to illustrate the // ratio_less_equal function // to show less than #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<1, 3> ratio1; typedef ratio<1, 2> ratio2; // check if R1<=R2 if (ratio_less_equal<ratio1, ratio2>::value) cout << "1/3 is less than or equal to 1/2"; else cout << "1/3 is greater than 1/2"; return 0; } Output: 1/3 is less than or equal to 1/2 Program 3: CPP // C++ program to illustrate the // ratio_less_equal function // to show when greater than #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<1, 8> ratio1; typedef ratio<1, 10> ratio2; // check if R1<=R2 if (ratio_less_equal<ratio1, ratio2>::value) cout << "1/8 is less than or equal to 1/10"; else cout << "1/8 is greater than 1/10"; return 0; } Output: 1/8 is greater than 1/10 Comment More infoAdvertise with us Next Article abs(), labs(), llabs() functions in C/C++ T Twinkl Bajaj Follow Improve Article Tags : C++ STL CPP-Library CPP-Functions cpp-ratio +1 More Practice Tags : CPPSTL Similar Reads ratio_less() function in C++ The ratio_less() is an inbuilt function in C++ which checks if the ratio R1 is less than the ratio R2. It returns True if the ratio is less than ratio 2, else it returns false. Syntax: template ratio_less Template Parameters: The function accepts two template parameters ratio1 and ratio2 which are t 2 min read ratio_greater_equal() function in C++ The ratio_greater_equal() is an inbuilt function in C++ which checks if the ratio R1 is greater than or equal to the ratio R2. It returns True if the ratio is greater than or equal to ratio 2, else it returns false. Syntax: template ratio_greater_equal Template Parameters The function accepts two te 2 min read ratio_greater() function in C++ The ratio_greater() is an inbuilt function in C++ which checks if the ratio R1 is greater than the ratio R2. It returns True if the ratio is greater than ratio 2, else it returns false. Syntax: template ratio_greater Template Parameters The function accepts two template parameters ratio1 and ratio2 2 min read lldiv() function in C++ STL The lldiv() is a builtin function in C++ STL which gives us the quotient and remainder of the division of two numbers. Syntax: lldiv(n, d) Parameters: The function accepts two mandatory parameters which are described below: n: It specifies the dividend. The data-type can be long long or long long in 2 min read abs(), labs(), llabs() functions in C/C++ The std::abs(), std::labs() and std::llabs() in C++ are built-in functions that are used to find the absolute value of any number that is given as the argument. Absolute value is the value of a number without any sign. These functions are defined inside the <cmath> header file.In this article, 3 min read wmemcmp() function in C/C++ The wmemcmp() function in C/C++ compare two wide characters. This function compares the first num wide characters of two wide characters pointed by str1 and str2, returns zero if both the strings are equal or different value from zero if they are not. Syntax: int wmemcmp (const wchar_t* str1, const 2 min read Like