주어진 것은 C++에서 ratio_less_equal() 함수의 작동을 보여주는 작업입니다.
주어진 함수 Ratio_less_equal은 ratio1의 값이 ratio2보다 작거나 같은지 확인합니다. ratio1이 ratio2보다 작거나 같으면 true를 반환하고 그렇지 않으면 false를 반환하는 부울 상수 "값"을 반환합니다.
구문
template ratio_less_equal
매개변수
이 함수는 두 개의 템플릿 매개변수를 받아들입니다. 하나는 ratio1이고 다른 하나는 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.
아래 프로그램에서 사용하고 있는 접근 방식
-
먼저 두 비율을 선언합니다.
-
그런 다음 두 비율의 값을 할당합니다.
-
그런 다음 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.