Ratio manipulationer i C ++ | Set 2 (jämförelse)

Nödvändig förutsättning - Ratio manipulationer i C ++ | Set 1 (aritmetik)
I C ++ Huvudfil gör det möjligt för oss att manipulera förhållanden med olika inbyggda mallalias. Huvudfilen introducerades från C ++ 11 och framåt. I den här artikeln kommer vi att diskutera jämförelsen av förhållande manipulationer i C ++. Följande funktioner används:

  • Förhållande
  • förhållande_not_ekal
  • förhållande
  • förhållande
  • Ratio_Greater_Equal
  • förhållande_less_equal

1. Ratio_Equal: Denna mall alias kontrollerar om förhållanden i sina argument är lika . Returnerar sant om lika annars returnerar falskt. Den returnerar en booleska medlem konstant 'värde'
2. Ratio_not_equal: Denna mall alias kontrollerar om förhållanden I sina argument är det inte lika . Returnerar sant om inte lika annat om lika returnerar falskt. Den returnerar en booleska medlem konstant 'värde' .  

CPP
   // C++ code to demonstrate the working of   // ratio_equal and ratio_not_equal   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  1       10  >     ratio2  ;      // Checking if ratios are equal using ratio_equal      ratio_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'Ratios are equal'      :     cout      < <     'Ratios are not equal'  ;      cout      < <     endl  ;      // Checking if ratios are not equal using      // ratio_not_equal      ratio_not_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'Ratios are not equal'      :     cout      < <     'Ratios are equal'  ;      return     0  ;   }   

Produktion
Ratios are equal Ratios are equal 

3. Ratio_Greater: Detta tillfälliga alias kontrollerar om Ratio1 är större än förhållandet2 . Det Returnerar en boolesk medlem konstant 'värde' som returnerar sant om förhållandet1 är större än förhållandet2 annars returnerar falskt.
4. Ratio_less: Detta tillfälliga alias kontrollerar om förhållande1 är mindre än förhållande2 . Det Returnerar en boolesk medlem konstant 'värde' som returnerar sant om förhållandet1 är mindre än förhållandet2 annars returnerar falskt. 

CPP
   // C++ code to demonstrate the working of   // ratio_greater and ratio_less   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  11       100  >     ratio2  ;      // Checking if ratio1 is greater than ratio2      // using ratio_greater      ratio_greater   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is greater than ratio2'      :     cout      < <     'ratio1 is not greater than ratio2'  ;      cout      < <     endl  ;      // Checking if ratio1 is less than ratio2      // using ratio_less      ratio_less   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is less than ratio2'      :     cout      < <     'ratio1 is not less than ratio2'  ;      cout      < <     endl  ;      return     0  ;   }   

Produktion
ratio1 is not greater than ratio2 ratio1 is less than ratio2 

5. RATIO_GREATER_EQUAL: Detta tillfälliga alias kontrollerar om Ratio1 är större eller lika än förhållandet2 . Det Returnerar en boolesk medlem konstant 'värde' som returnerar sant om förhållandet1 är större eller lika än förhållandet2 annars returnerar falskt.
6. Ratio_less_Equal: Detta tillfälliga alias kontrollerar om Ratio1 är mindre eller lika än förhållandet2 . Det Returnerar en boolesk medlem konstant 'värde' vilket returnerar sant om förhållandet1 är mindre eller lika än förhållandet2 annars returnerar falskt. 

CPP
   // C++ code to demonstrate the working of   // ratio_greater_equal and ratio_less_equal   #include          #include         // for ratio manipulation   using     namespace     std  ;   // Driver Code   int     main  ()   {      // Declaring ratios      typedef     ratio   <  10       100  >     ratio1  ;      typedef     ratio   <  1       10  >     ratio2  ;      // Checking if ratio1 is greater or equal than ratio2      // using ratio_greater_equal      ratio_greater_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is greater or equal than ratio2'      :     cout      < <     'ratio1 is not greater or equal than '      'ratio2'  ;      cout      < <     endl  ;      // Checking if ratio1 is less or equal than ratio2      // using ratio_less_equal      ratio_less_equal   <  ratio1       ratio2  >::  value      ?     cout      < <     'ratio1 is less or equal than ratio2'      :     cout      < <     'ratio1 is not less or equal than ratio2'  ;      cout      < <     endl  ;      return     0  ;   }   

Produktion
ratio1 is greater or equal than ratio2 ratio1 is less or equal than ratio2