第十二周项目一 阅读程序,请写出这些程序的运行结果(4)

/*copyright(c)2016.烟台大学计算机学院
 * All rights reserved,
 * 文件名称:text.Cpp
 * 作者:舒文超
 * 完成日期:2016年5月11日
 * 版本号:vc++6.0
 *
 * 问题描述:阅读程序写出程序运行的结果
 */
#include<iostream>
using namespace std;
class Pair
{
    int m;
    int n;
public:
    Pair(int i,int j):m(i),n(j){}
    bool operator>(Pair p)const;
};
bool Pair::operator>(Pair p)const
{
    if(m!=p.m)
        return m>p.m;
    return n>p.n;
}
int main()
{
    Pair p1(3,4),p2(4,3),p3(4,5);
    cout<<(p1>p2)<<(p2>p1)<<(p2>p3)<<(p3>p2);
    return 0;
}

运行结果:

0101   (比较大小,正确就返回1,错误就返回0)

你可能感兴趣的:(第十二周项目一 阅读程序,请写出这些程序的运行结果(4))