给出了在 C++ 中显示 ratio_greater_equal () 函数工作的任务。
给定的函数 Ratio_greater_equal 检查 ratio1 的值是否大于或等于 ratio2。它返回一个布尔常量 “value”,如果 ratio1 大于或等于 ratio2,则返回 true,否则返回 false。
用法
Template <ratio1, ratio2> ratio_greater_equal
参数
该函数接受两个模板参数,一个是 ratio1,另一个是 ratio2,要进行比较。
此函数的说明
在此函数中,如果 ratio1 的值大于或等于 ratio2 的值,则此函数将返回布尔值,为真,即整数位 1,否则将返回假,即整数位 0。
typedef 的解释
typedef 用于给数据类型一个新的名字,在这个程序中我们使用 typedef 来声明比率。 Typedef 创建可以在任何地方使用的别名来代替类型名称,它可以在同一行声明一个或多个标识符,也可以用于声明数组和函数类型、指针、引用、类类型等。
例如
Input:1/3 and 3/9 Output:3/9 is greater than 1/3. Input:4/16 and 4/16 Output:4/16 is equals to the 4/16.
我们在以下程序中使用的方法
首先我们声明两个比率
然后分配两个比率的值。
然后我们检查 ratio1 的值是否大于或等于 ratio2 的值。
使用 ratio_greater_equal 我们可以检查
示例
// C++ code to demonstrate the working of ratio_greater_equal #include<iostream.h> #include<ratio.h> using namespace std; int main( ){ // Declaring ratios typedef ratio<10, 100> ratio1; typedef ratio<1, 10> ratio2; // Checking ratio1 is greater than or equal to ratio2. if (ratio_greater_equal<ratio1, ratio2>::value ) cout< " ratio1 is greater than or equal to ratio2"; else cout<< " ratio1 is not greater than or equal to ratio2"; cout<< "endl"; return 0; }
输出
如果我们运行上面的代码,它将生成以下输出
10/100 is greater than or equal to 1/10 1/3 is not greater than or equal to 3/9.
相关用法
- C++ Ratio_greater()用法及代码示例
- C++ Ratio_less_equal用法及代码示例
- C++ Ratio_less()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ List cend()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ llround()用法及代码示例
- C++ getline(string)用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
- C++ string::length()用法及代码示例
- C++ Unordered_map end()用法及代码示例
注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 Ratio_greater_equal () function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。