📜  C++中的ratio_greater()函数

📅  最后修改于: 2021-05-30 18:27:09             🧑  作者: Mango

ratio_greater()是C++中的内置函数,用于检查比率R1是否大于比率R2。如果比率大于比率2,则返回True;否则返回false。

句法:

template < class ratio1_name, class ratio2_name > ratio_greater

模板参数的函数接受两个模板参数比1比*这些都是进行比较。

返回值:如果ratio1大于ratio2,则该函数返回一个布尔值,该值为true,否则返回false。

下面的程序说明了上述函数:

程序1:

// C++ program to illustrate the
// ratio_greater function
#include 
#include 
using namespace std;
int main()
{
    typedef ratio<7, 7> ratio1;
    typedef ratio<4, 7> ratio2;
  
    // check if R1>R2
    if (ratio_greater::value)
        cout << "7/7 is more than 4/7";
    else
        cout << "7/7 is not more than 4/7";
  
    return 0;
}
输出:
7/7 is more than 4/7

程式2:

// C++ program to illustrate the
// ratio_greater function
#include 
#include 
using namespace std;
int main()
{
    typedef ratio<1, 2> ratio1;
    typedef ratio<4, 7> ratio2;
  
    // check if R1>R2
    if (ratio_greater::value)
        cout << "1/2 is more than 4/7";
    else
        cout << "1/2 is not more than 4/7";
  
    return 0;
}
输出:
1/2 is not more than 4/7
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”