función ratio_greater_equal() en C++

ratio_greater_equal () es una función incorporada en C++ que verifica si la relación R1 es mayor o igual que la relación R2. Devuelve True si la razón es mayor o igual que la razón 2, de lo contrario devuelve falso.

Sintaxis:

template < class ratio1_name, class ratio2_name > ratio_greater_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 un valor booleano que es verdadero si la relación1 es mayor o igual 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_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_greater_equal<ratio1, ratio2>::value)
        cout << "3/9 is greater than or equal to 1/3";
    else
        cout << "3/9 is less than 1/3";
  
    return 0;
}
Producción:

3/9 is greater than or equal to 1/3

Programa 2:

// C++ program to illustrate the
// ratio_greater_equal function
// to show greater than
#include <iostream>
#include <ratio>
using namespace std;
int main()
{
    typedef ratio<1, 2> ratio1;
    typedef ratio<1, 3> ratio2;
  
    // check if R1>=R2
    if (ratio_greater_equal<ratio1, ratio2>::value)
        cout << "1/2 is greater than or equal to 1/3";
    else
        cout << "1/2 is less than 1/3";
  
    return 0;
}
Producción:

1/2 is greater than or equal to 1/3

Programa 3:

// C++ program to illustrate the
// ratio_greater_equal function
// to show when less than
#include <iostream>
#include <ratio>
using namespace std;
int main()
{
    typedef ratio<1, 10> ratio1;
    typedef ratio<1, 8> ratio2;
  
    // check if R1>=R2
    if (ratio_greater_equal<ratio1, ratio2>::value)
        cout << "1/10 is greater than or equal to 1/8";
    else
        cout << "1/10 is less than 1/8";
  
    return 0;
}
Producción:

1/10 is less than 1/8

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *