ratio_greater () es una función incorporada en C++ que verifica si la relación R1 es mayor que la relación R2. Devuelve True si la relación es mayor que la relación 2, de lo contrario, devuelve falso.
Sintaxis:
template < class ratio1_name, class ratio2_name > ratio_greater
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 un valor booleano que es verdadero si la relación1 es mayor que la relación2; de lo contrario, devuelve falso.
Los siguientes programas ilustran la función anterior:
Programa 1:
// C++ program to illustrate the // ratio_greater function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<7, 7> ratio1; typedef ratio<4, 7> ratio2; // check if R1>R2 if (ratio_greater<ratio1, ratio2>::value) cout << "7/7 is more than 4/7"; else cout << "7/7 is not more than 4/7"; return 0; }
Producción:
7/7 is more than 4/7
Programa 2:
// C++ program to illustrate the // ratio_greater function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<1, 2> ratio1; typedef ratio<4, 7> ratio2; // check if R1>R2 if (ratio_greater<ratio1, ratio2>::value) cout << "1/2 is more than 4/7"; else cout << "1/2 is not more than 4/7"; return 0; }
Producción:
1/2 is not more than 4/7
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