C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C++のRatio_less_equal関数


与えられたのは、c ++でのratio_less_equal()関数の動作を示すタスクです。

指定された関数Ratio_less_equalは、ratio1の値がratio2以下であるかどうかをチェックします。ブール定数「value」を返します。ratio1がratio2以下の場合はtrueを返し、それ以外の場合はfalseを返します。

構文

template ratio_less_equal

パラメータ

この関数は、比較される2つのテンプレートパラメータを受け入れます。1つはratio1で、もう1つはratio2です。

この機能の説明

この関数では、ratio1の値がratio2の値以下の場合、この関数はブール値を返します。これはtrue、つまり整数の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.

以下のプログラムで使用しているアプローチ

  • まず、2つの比率を宣言します。

  • 次に、2つの比率の値を割り当てます。

  • 次に、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.

  1. C ++のlog()関数

    C / C++ライブラリ関数doublelog(double x)は、xの自然対数(baseelogarithm)を返します。以下はlog()関数の宣言です。 double log(double x) パラメータは浮動小数点値です。そして、この関数はxの自然対数を返します。 例 #include <iostream> #include <cmath> using namespace std; int main () {    double x, ret;    x = 2.7;    /* finding l

  2. C ++のswap()関数

    swap()関数は、2つの数値を交換するために使用されます。この関数を使用すると、2つの数値を交換するために3番目の変数は必要ありません。 C ++言語でのswap()の構文は次のとおりです。 void swap(int variable_name1, int variable_name2); 変数に値を割り当てるか、ユーザー定義の値を渡すと、変数の値が交換されますが、変数の値は実際の場所では同じままです。 これがC++言語でのswap()の例です 例 #include <bits/stdc++.h> using namespace std; int main() { &nb