这个 比率_更大() 是C++中的一个内置函数,它检查比率R1是否大于比率R2。如果比率大于比率2,则返回True,否则返回false。
null
语法:
template < class ratio1_name, class ratio2_name > ratio_greater
模板参数 该函数接受两个模板参数 比率1 和 比率2 这些都是可以比较的。
返回值: 该函数返回一个布尔值,如果ratio1大于ratio2,则该值为真,否则返回false。
以下程序说明了上述功能:
项目1:
// C++ program to illustrate the // ratio_greater function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<7, 7> ratio1; typedef ratio<4, 7> ratio2; // check if R1>R2 if (ratio_greater<ratio1, ratio2>::value) cout << "7/7 is more than 4/7" ; else cout << "7/7 is not more than 4/7" ; return 0; } |
输出:
7/7 is more than 4/7
项目2:
// C++ program to illustrate the // ratio_greater function #include <iostream> #include <ratio> using namespace std; int main() { typedef ratio<1, 2> ratio1; typedef ratio<4, 7> ratio2; // check if R1>R2 if (ratio_greater<ratio1, ratio2>::value) cout << "1/2 is more than 4/7" ; else cout << "1/2 is not more than 4/7" ; return 0; } |
输出:
1/2 is not more than 4/7
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END