当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Ratio_less_equal用法及代码示例


给出了在 C++ 中显示 ratio_less_equal () 函数工作的任务。

给定的函数 Ratio_less_equal 检查 ratio1 的值是否小于或等于 ratio2。它返回一个布尔常量 “value”,如果 ratio1 小于或等于 ratio2,则返回 true,否则返回 false。

用法

template ratio_less_equal

参数

该函数接受两个模板参数,一个是 ratio1,另一个是 ratio2,要进行比较。

此函数的说明

在此函数中,如果 ratio1 的值小于或等于 ratio2 的值,则此函数将返回布尔值,该值为真,即整数位 1,否则将返回 false,即整数位 0。

例如

Input:1/3 and 3/9
Output:1/3 is less than or equal to 3/9.
Input:1/4 and 1/4
Output:1/4 is equal to 1/4.

我们在以下程序中使用的方法

  • 首先我们声明这两个比率。

  • 然后分配两个比率的值。

  • 然后我们检查 ratio1 的值是否小于或等于 ratio2 的值。

  • 使用 ratio_less_equal 我们可以检查

示例

// C++ code demonstrate the working of ratio_less_equal
#include<iostream.h>
#include<ratio.h>
Using namespace std;
Int main( ){
   typedef ratio<1, 3> ratio1;
   typedef ratio<3, 9> ratio2;
   if(ratio_less_equal<ratio1, ratio2>::value)
      cout<< “ ratio1 is less than or equal to ratio2”;
   else
      cout<< “ ratio1 is not less than or equal to ratio2”;
   return 0;
}

输出

如果我们运行上面的代码,它将生成以下输出。

1/3 is less than or equal to 3/9.
4/16 is not less than or equal to 1/4.

相关用法


注:本文由纯净天空筛选整理自Sunidhi Bansal大神的英文原创作品 Ratio_less_equal function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。