ratio_not_equal es una función incorporada en C++ STL que verifica si dos proporciones dadas no son iguales o iguales.
Sintaxis:
template < class ratio1_name, class ratio2_name > ratio_not_equal
Parámetros de plantilla: la función acepta dos parámetros de plantilla ratio1 y ratio2 que se van a comparar.
Valor devuelto: la función devuelve verdadero si las proporciones no son iguales, de lo contrario, devuelve falso.
El siguiente programa demuestra la función:
Programa 1:
// C++ program to illustrate the // ratio_not_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 not same if (ratio_not_equal<ratio1, ratio2>::value) cout << "Both ratio are not equal"; else cout << "Both ratio are equal"; return 0; }
Producción:
Both ratio are equal
Programa 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 not same if (ratio_not_equal<ratio1, ratio2>::value) cout << "Both ratio are not equal"; else cout << "Both ratio are equal"; return 0; }
Producción:
Both ratio are not equal
Publicación traducida automáticamente
Artículo escrito por Twinkl Bajaj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA